OSDN Git Service

Resolve a number of oddities in the Java build. First, remove the weird
[pg-rex/syncrep.git] / contrib / Makefile
1 # $Header: /cvsroot/pgsql/contrib/Makefile,v 1.23 2001/07/06 23:07:19 petere Exp $
2
3 subdir = contrib
4 top_builddir = ..
5 include $(top_builddir)/src/Makefile.global
6
7 WANTED_DIRS = \
8                 array           \
9                 cube            \
10                 dbase           \
11                 dblink          \
12                 earthdistance   \
13                 findoidjoins    \
14                 fulltextindex   \
15                 intarray        \
16                 isbn_issn       \
17                 lo              \
18                 mSQL-interface  \
19                 mac             \
20                 metaphone       \
21                 miscutil        \
22                 noupdate        \
23                 oid2name        \
24                 pg_controldata  \
25                 pg_dumplo       \
26                 pg_logger       \
27                 pg_resetxlog    \
28                 pgbench         \
29                 pgcrypto        \
30                 rserv           \
31                 rtree_gist      \
32                 seg             \
33                 soundex         \
34                 spi             \
35                 string          \
36                 tips            \
37                 unixdate        \
38                 userlock        \
39                 vacuumlo        
40
41 ifeq ($(with_java),yes)
42 WANTED_DIRS += retep
43 endif
44
45
46 all install installdirs uninstall clean distclean maintainer-clean:
47         for dir in $(WANTED_DIRS); do \
48             if [ -f $$dir/Makefile ]; then \
49                 $(MAKE) -C $$dir $@; \
50             fi; \
51         done