]> granicus.if.org Git - postgresql/blob - contrib/Makefile
Cleanup.
[postgresql] / contrib / Makefile
1 # $Header: /cvsroot/pgsql/contrib/Makefile,v 1.35 2002/08/17 04:06:48 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                 dbmirror        \
15                 dbsize          \
16                 earthdistance   \
17                 findoidjoins    \
18                 fulltextindex   \
19                 fuzzystrmatch   \
20                 intarray        \
21                 isbn_issn       \
22                 lo              \
23                 ltree           \
24                 miscutil        \
25                 noupdate        \
26                 oid2name        \
27                 pg_dumplo       \
28                 pg_logger       \
29                 pgbench         \
30                 pgcrypto        \
31                 pgstattuple     \
32                 rserv           \
33                 rtree_gist      \
34                 seg             \
35                 spi             \
36                 string          \
37                 tablefunc       \
38                 tips            \
39                 tsearch         \
40                 userlock        \
41                 vacuumlo
42
43 ifeq ($(with_java),yes)
44 WANTED_DIRS += retep
45 endif
46
47 # Missing:
48 #               ipc_check       \ (does not have a makefile)
49 #               mSQL-interface  \ (requires msql installed)
50 #               mac             \ (does not have a makefile)
51 #               mysql           \ (does not have a makefile)
52 #               oracle          \ (does not have a makefile)
53 #               start-scripts   \ (does not have a makefile)
54 #               tools           \ (does not have a makefile)
55 #               xml             \ (non-standard makefile)
56
57
58 all install installdirs uninstall clean distclean maintainer-clean check installcheck:
59         @for dir in $(WANTED_DIRS); do \
60                 $(MAKE) -C $$dir $@ || exit; \
61         done