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