mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-04 00:02:52 -05:00 
			
		
		
		
	the src/include tree, so that -I backend is no longer necessary anywhere. Also, clean up some bit rot in contrib tree.
		
			
				
	
	
		
			29 lines
		
	
	
		
			450 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			450 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# Makefile for contrib code
 | 
						|
#
 | 
						|
# The following subdirs don't have a Makefile:
 | 
						|
#
 | 
						|
#   apache_logging
 | 
						|
#   linux
 | 
						|
#   mSQL-interface
 | 
						|
#   noupdate
 | 
						|
#   unixdate
 | 
						|
#
 | 
						|
# The following subdirs give make errors:
 | 
						|
#
 | 
						|
#   earthdistance
 | 
						|
#   os2client
 | 
						|
 | 
						|
all:
 | 
						|
	for dir in *; do \
 | 
						|
	    if [ -e $$dir/Makefile ]; then \
 | 
						|
		$(MAKE) -C $$dir $@ ; \
 | 
						|
	    fi; \
 | 
						|
	done
 | 
						|
 | 
						|
.DEFAULT:
 | 
						|
	for dir in *; do \
 | 
						|
	    if [ -e $$dir/Makefile ]; then \
 | 
						|
		$(MAKE) -C $$dir $@ ; \
 | 
						|
	    fi; \
 | 
						|
	done
 |