postgresql/contrib/Makefile
Tom Lane 091126fa28 Generated header files parse.h and fmgroids.h are now copied into
the src/include tree, so that -I backend is no longer necessary anywhere.
Also, clean up some bit rot in contrib tree.
2000-05-29 05:45:56 +00:00

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