Makefile 1.1 KB
Newer Older
1
# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.28 2001/09/29 03:11:58 momjian Exp $
Bruce Momjian's avatar
Bruce Momjian committed
2

3 4
subdir = contrib
top_builddir = ..
5
include $(top_builddir)/src/Makefile.global
Bruce Momjian's avatar
Bruce Momjian committed
6

7 8
WANTED_DIRS = \
		array		\
9
		btree_gist	\
Tom Lane's avatar
Tom Lane committed
10
		chkpass		\
Tom Lane's avatar
Tom Lane committed
11
		cube		\
12
		dbase		\
13
		dblink		\
Bruce Momjian's avatar
Bruce Momjian committed
14 15 16
		earthdistance	\
		findoidjoins	\
		fulltextindex	\
17
		fuzzystrmatch	\
18
		intarray	\
Bruce Momjian's avatar
Bruce Momjian committed
19
		isbn_issn	\
Bruce Momjian's avatar
Bruce Momjian committed
20
		lo		\
Bruce Momjian's avatar
Bruce Momjian committed
21 22
		miscutil	\
		noupdate	\
23
		oid2name	\
24
		pg_controldata	\
Bruce Momjian's avatar
Bruce Momjian committed
25
		pg_dumplo	\
Bruce Momjian's avatar
Bruce Momjian committed
26
		pg_logger	\
27
		pg_resetxlog	\
Bruce Momjian's avatar
Bruce Momjian committed
28
		pgbench		\
29
		pgcrypto	\
30
		rserv		\
31
		rtree_gist	\
Bruce Momjian's avatar
Bruce Momjian committed
32 33
		seg		\
		spi		\
Bruce Momjian's avatar
Bruce Momjian committed
34 35 36
		string		\
		tips		\
		userlock	\
37 38 39 40 41 42 43 44 45 46 47
		vacuumlo

# Missing:
#		ipc_check	\ (does not have a makefile)
#		mSQL-interface	\ (requires msql installed)
#		mac		\ (does not have a makefile)
#		mysql		\ (does not have a makefile)
#		oracle		\ (does not have a makefile)
#		start-scripts	\ (does not have a makefile)
#		tools		\ (does not have a makefile)
#		xml		\ (non-standard makefile)
Bruce Momjian's avatar
Bruce Momjian committed
48

49 50 51 52 53
ifeq ($(with_java),yes)
WANTED_DIRS += retep
endif


54 55 56
all install installdirs uninstall clean distclean maintainer-clean check installcheck:
	@for dir in $(WANTED_DIRS); do \
		$(MAKE) -C $$dir $@ || exit; \
Bruce Momjian's avatar
Bruce Momjian committed
57
	done