postgres/contrib/Makefile

64 lines
1.3 KiB
Makefile
Raw Normal View History

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