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