]> granicus.if.org Git - postgresql/blob - contrib/Makefile
Add ltree data type to contrib, from Teodor Sigaev and Oleg Bartunov.
[postgresql] / contrib / Makefile
1 # $Header: /cvsroot/pgsql/contrib/Makefile,v 1.34 2002/07/30 16:40:34 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                 ltree           \
24                 miscutil        \
25                 noupdate        \
26                 oid2name        \
27                 pg_controldata  \
28                 pg_dumplo       \
29                 pg_logger       \
30                 pg_resetxlog    \
31                 pgbench         \
32                 pgcrypto        \
33                 pgstattuple     \
34                 rserv           \
35                 rtree_gist      \
36                 seg             \
37                 spi             \
38                 string          \
39                 tablefunc       \
40                 tips            \
41                 tsearch         \
42                 userlock        \
43                 vacuumlo
44
45 ifeq ($(with_java),yes)
46 WANTED_DIRS += retep
47 endif
48
49 # Missing:
50 #               ipc_check       \ (does not have a makefile)
51 #               mSQL-interface  \ (requires msql installed)
52 #               mac             \ (does not have a makefile)
53 #               mysql           \ (does not have a makefile)
54 #               oracle          \ (does not have a makefile)
55 #               start-scripts   \ (does not have a makefile)
56 #               tools           \ (does not have a makefile)
57 #               xml             \ (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