]> granicus.if.org Git - postgresql/blob - contrib/Makefile
Generated header files parse.h and fmgroids.h are now copied into
[postgresql] / contrib / Makefile
1 # Makefile for contrib code
2 #
3 # The following subdirs don't have a Makefile:
4 #
5 #   apache_logging
6 #   linux
7 #   mSQL-interface
8 #   noupdate
9 #   unixdate
10 #
11 # The following subdirs give make errors:
12 #
13 #   earthdistance
14 #   os2client
15
16 all:
17         for dir in *; do \
18             if [ -e $$dir/Makefile ]; then \
19                 $(MAKE) -C $$dir $@ ; \
20             fi; \
21         done
22
23 .DEFAULT:
24         for dir in *; do \
25             if [ -e $$dir/Makefile ]; then \
26                 $(MAKE) -C $$dir $@ ; \
27             fi; \
28         done