OSDN Git Service

To fix the perpetually broken makefiles in the contrib tree, I have
[pg-rex/syncrep.git] / contrib / Makefile
1 # $Header: /cvsroot/pgsql/contrib/Makefile,v 1.27 2001/09/06 10:49:29 petere 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                 rserv           \
30                 rtree_gist      \
31                 seg             \
32                 spi             \
33                 string          \
34                 tips            \
35                 userlock        \
36                 vacuumlo
37
38 # Missing:
39 #               ipc_check       \ (does not have a makefile)
40 #               mSQL-interface  \ (requires msql installed)
41 #               mac             \ (does not have a makefile)
42 #               mysql           \ (does not have a makefile)
43 #               oracle          \ (does not have a makefile)
44 #               pgcrypto        \ (non-standard makefile)
45 #               start-scripts   \ (does not have a makefile)
46 #               tools           \ (does not have a makefile)
47 #               xml             \ (non-standard makefile)
48
49 ifeq ($(with_java),yes)
50 WANTED_DIRS += retep
51 endif
52
53
54 all install installdirs uninstall clean distclean maintainer-clean check installcheck:
55         @for dir in $(WANTED_DIRS); do \
56                 $(MAKE) -C $$dir $@ || exit; \
57         done