]> granicus.if.org Git - postgresql/blob - contrib/Makefile
Show intarray contrib module in contrib/README and Makefile.
[postgresql] / contrib / Makefile
1 # $Header: /cvsroot/pgsql/contrib/Makefile,v 1.12 2001/01/15 22:20:00 tgl 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                 linux           \
16                 lo                      \
17                 mSQL-interface  \
18                 mac                     \
19                 miscutil        \
20                 noupdate        \
21                 pg_dumplo       \
22                 pgbench         \
23                 pgcrypto        \
24                 rserv           \
25                 seg                     \
26                 soundex         \
27                 spi                     \
28                 string          \
29                 tips            \
30                 unixdate        \
31                 userlock        \
32                 vacuumlo        
33
34 all install installdirs uninstall clean distclean maintainer-clean:
35         for dir in $(WANTED_DIRS); do \
36             if [ -e $$dir/Makefile ]; then \
37                 $(MAKE) -C $$dir $@; \
38             fi; \
39         done