]> granicus.if.org Git - postgresql/blob - contrib/Makefile
'test -e' isn't portable. Use 'test -f'.
[postgresql] / contrib / Makefile
1 # $Header: /cvsroot/pgsql/contrib/Makefile,v 1.17 2001/03/13 19:28:02 petere Exp $
2
3 subdir = contrib
4 top_builddir = ..
5 include $(top_builddir)/src/Makefile.global
6
7 WANTED_DIRS = \
8                 array           \
9                 cube            \
10                 earthdistance   \
11                 findoidjoins    \
12                 fulltextindex   \
13                 intarray        \
14                 isbn_issn       \
15                 lo              \
16                 mSQL-interface  \
17                 mac             \
18                 miscutil        \
19                 noupdate        \
20                 oid2name        \
21                 pg_dumplo       \
22                 pg_logger       \
23                 pgbench         \
24                 pgcrypto        \
25                 rserv           \
26                 seg             \
27                 soundex         \
28                 spi             \
29                 string          \
30                 tips            \
31                 unixdate        \
32                 userlock        \
33                 vacuumlo        
34
35 all install installdirs uninstall clean distclean maintainer-clean:
36         for dir in $(WANTED_DIRS); do \
37             if [ -f $$dir/Makefile ]; then \
38                 $(MAKE) -C $$dir $@; \
39             fi; \
40         done