mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-31 10:30:33 +03:00 
			
		
		
		
	This allows sane behavior in a PGXS build done on a machine where build tools such as bison are missing. Jim Nasby
		
			
				
	
	
		
			18 lines
		
	
	
		
			441 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			441 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # config/Makefile
 | |
| 
 | |
| subdir = config
 | |
| top_builddir = ..
 | |
| include $(top_builddir)/src/Makefile.global
 | |
| 
 | |
| 
 | |
| install: all installdirs
 | |
| 	$(INSTALL_SCRIPT) $(srcdir)/install-sh '$(DESTDIR)$(pgxsdir)/config/install-sh'
 | |
| 	$(INSTALL_SCRIPT) $(srcdir)/missing '$(DESTDIR)$(pgxsdir)/config/missing'
 | |
| 
 | |
| installdirs:
 | |
| 	$(MKDIR_P) '$(DESTDIR)$(pgxsdir)/config'
 | |
| 
 | |
| uninstall:
 | |
| 	rm -f '$(DESTDIR)$(pgxsdir)/config/install-sh'
 | |
| 	rm -f '$(DESTDIR)$(pgxsdir)/config/missing'
 |