postgresql/contrib/Makefile

63 lines
1.2 KiB
Makefile
Raw Normal View History

# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.39 2002/09/05 20:53:45 tgl Exp $
2000-06-15 14:55:34 -04:00
subdir = contrib
top_builddir = ..
include $(top_builddir)/src/Makefile.global
2000-06-15 14:55:34 -04:00
WANTED_DIRS = \
array \
btree_gist \
2001-08-23 12:54:25 -04:00
chkpass \
2000-12-11 15:40:59 -05:00
cube \
dbase \
2001-06-18 13:20:56 -04:00
dblink \
2002-06-23 18:15:04 -04:00
dbmirror \
dbsize \
2000-06-15 14:55:34 -04:00
earthdistance \
findoidjoins \
2000-06-15 14:55:34 -04:00
fulltextindex \
fuzzystrmatch \
2002-08-29 21:44:00 -04:00
intagg \
intarray \
2000-06-15 14:55:34 -04:00
isbn_issn \
2001-02-10 07:07:12 -05:00
lo \
ltree \
2000-06-15 14:55:34 -04:00
miscutil \
noupdate \
oid2name \
2000-06-15 14:55:34 -04:00
pg_dumplo \
2001-02-10 21:18:48 -05:00
pg_logger \
2000-06-15 14:55:34 -04:00
pgbench \
pgcrypto \
2001-09-30 21:52:38 -04:00
pgstattuple \
rserv \
rtree_gist \
2001-02-10 07:07:12 -05:00
seg \
spi \
2000-06-15 14:55:34 -04:00
string \
2002-07-30 12:32:20 -04:00
tablefunc \
2000-06-15 14:55:34 -04:00
tips \
tsearch \
2000-06-15 14:55:34 -04:00
userlock \
vacuumlo
ifeq ($(with_java),yes)
WANTED_DIRS += retep
endif
# 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)
2000-06-15 14:55:34 -04:00
all install installdirs uninstall clean distclean maintainer-clean check installcheck:
@for dir in $(WANTED_DIRS); do \
$(MAKE) -C $$dir $@ || exit; \
2000-06-15 14:55:34 -04:00
done