OSDN Git Service

Remove contrib/pg_logger, per recent discussion.
[pg-rex/syncrep.git] / contrib / Makefile
1 # $PostgreSQL: pgsql/contrib/Makefile,v 1.51 2004/09/16 21:20:19 tgl Exp $
2
3 subdir = contrib
4 top_builddir = ..
5 include $(top_builddir)/src/Makefile.global
6
7 WANTED_DIRS = \
8                 btree_gist      \
9                 chkpass         \
10                 cube            \
11                 dbase           \
12                 dblink          \
13                 dbmirror        \
14                 dbsize          \
15                 earthdistance   \
16                 findoidjoins    \
17                 fulltextindex   \
18                 fuzzystrmatch   \
19                 intagg          \
20                 intarray        \
21                 isbn_issn       \
22                 lo              \
23                 ltree           \
24                 miscutil        \
25                 noupdate        \
26                 oid2name        \
27                 pg_autovacuum   \
28                 pg_dumplo       \
29                 pg_trgm         \
30                 pgbench         \
31                 pgcrypto        \
32                 pgstattuple     \
33                 rtree_gist      \
34                 seg             \
35                 spi             \
36                 string          \
37                 tablefunc       \
38                 tips            \
39                 tsearch         \
40                 tsearch2        \
41                 userlock        \
42                 vacuumlo
43
44 # Missing:
45 #               adddepend       \ (does not have a makefile)
46 #               array           \ (removed all but the README)
47 #               ipc_check       \ (does not have a makefile)
48 #               mSQL-interface  \ (requires msql installed)
49 #               mac             \ (does not have a makefile)
50 #               mysql           \ (does not have a makefile)
51 #               oracle          \ (does not have a makefile)
52 #               pg_upgrade      \ (does not have a makefile)
53 #               reindexdb       \ (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 #               xml2            \ (non-standard makefile)
58
59
60 all install installdirs uninstall clean distclean maintainer-clean check installcheck:
61         @for dir in $(WANTED_DIRS); do \
62                 $(MAKE) -C $$dir $@ || exit; \
63         done