postgresql/contrib/Makefile

64 lines
1.3 KiB
Makefile
Raw Normal View History

# $PostgreSQL: pgsql/contrib/Makefile,v 1.51 2004/09/16 21:20:19 tgl Exp $
2000-06-16 02:55:34 +08:00
subdir = contrib
top_builddir = ..
include $(top_builddir)/src/Makefile.global
2000-06-16 02:55:34 +08:00
WANTED_DIRS = \
btree_gist \
2001-08-24 00:54:25 +08:00
chkpass \
2000-12-12 04:40:59 +08:00
cube \
dbase \
2001-06-19 01:20:56 +08:00
dblink \
2002-06-24 06:15:04 +08:00
dbmirror \
dbsize \
earthdistance \
findoidjoins \
2000-06-16 02:55:34 +08:00
fulltextindex \
fuzzystrmatch \
2002-08-30 09:44:00 +08:00
intagg \
intarray \
2000-06-16 02:55:34 +08:00
isbn_issn \
2001-02-10 20:07:12 +08:00
lo \
ltree \
2000-06-16 02:55:34 +08:00
miscutil \
noupdate \
oid2name \
pg_autovacuum \
2000-06-16 02:55:34 +08:00
pg_dumplo \
pg_trgm \
2000-06-16 02:55:34 +08:00
pgbench \
pgcrypto \
2001-10-01 09:52:38 +08:00
pgstattuple \
rtree_gist \
2001-02-10 20:07:12 +08:00
seg \
spi \
2000-06-16 02:55:34 +08:00
string \
2002-07-31 00:32:20 +08:00
tablefunc \
2000-06-16 02:55:34 +08:00
tips \
tsearch \
2003-07-25 00:54:58 +08:00
tsearch2 \
2000-06-16 02:55:34 +08:00
userlock \
vacuumlo
# Missing:
# adddepend \ (does not have a makefile)
# array \ (removed all but the README)
# 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)
# pg_upgrade \ (does not have a makefile)
# reindexdb \ (does not have a makefile)
# start-scripts \ (does not have a makefile)
# tools \ (does not have a makefile)
# xml \ (non-standard makefile)
# xml2 \ (non-standard makefile)
2000-06-16 02:55:34 +08:00
all install installdirs uninstall clean distclean maintainer-clean check installcheck:
@for dir in $(WANTED_DIRS); do \
$(MAKE) -C $$dir $@ || exit; \
2000-06-16 02:55:34 +08:00
done