]> granicus.if.org Git - postgresql/blob - contrib/Makefile
unixdate subdirectory is gone.
[postgresql] / contrib / Makefile
1 # $Header: /cvsroot/pgsql/contrib/Makefile,v 1.26 2001/09/04 19:21:42 tgl Exp $
2
3 subdir = contrib
4 top_builddir = ..
5 include $(top_builddir)/src/Makefile.global
6
7 WANTED_DIRS = \
8                 array           \
9                 btree_gist      \
10                 chkpass         \
11                 cube            \
12                 dbase           \
13                 dblink          \
14                 earthdistance   \
15                 findoidjoins    \
16                 fulltextindex   \
17                 fuzzystrmatch   \
18                 intarray        \
19                 isbn_issn       \
20                 lo              \
21                 mSQL-interface  \
22                 mac             \
23                 miscutil        \
24                 noupdate        \
25                 oid2name        \
26                 pg_controldata  \
27                 pg_dumplo       \
28                 pg_logger       \
29                 pg_resetxlog    \
30                 pgbench         \
31                 pgcrypto        \
32                 rserv           \
33                 rtree_gist      \
34                 seg             \
35                 spi             \
36                 string          \
37                 tips            \
38                 userlock        \
39                 vacuumlo        
40
41 ifeq ($(with_java),yes)
42 WANTED_DIRS += retep
43 endif
44
45
46 all install installdirs uninstall clean distclean maintainer-clean:
47         for dir in $(WANTED_DIRS); do \
48             if [ -f $$dir/Makefile ]; then \
49                 $(MAKE) -C $$dir $@; \
50             fi; \
51         done