You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
postgres/contrib/Makefile

28 lines
450 B

# 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