mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
091126fa28
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
|