2001-05-31 14:27:18 -04:00
|
|
|
# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.21 2001/05/31 18:27:18 tgl Exp $
|
2000-06-15 14:55:34 -04:00
|
|
|
|
2000-07-09 09:14:19 -04:00
|
|
|
subdir = contrib
|
|
|
|
|
top_builddir = ..
|
2000-09-18 16:11:37 -04:00
|
|
|
include $(top_builddir)/src/Makefile.global
|
2000-06-15 14:55:34 -04:00
|
|
|
|
2000-12-20 12:22:26 -05:00
|
|
|
WANTED_DIRS = \
|
|
|
|
|
array \
|
2000-12-11 15:40:59 -05:00
|
|
|
cube \
|
2001-05-10 11:51:05 -04:00
|
|
|
dbase \
|
2000-06-15 14:55:34 -04:00
|
|
|
earthdistance \
|
|
|
|
|
findoidjoins \
|
|
|
|
|
fulltextindex \
|
2001-01-15 17:20:00 -05:00
|
|
|
intarray \
|
2000-06-15 14:55:34 -04:00
|
|
|
isbn_issn \
|
2001-02-10 07:07:12 -05:00
|
|
|
lo \
|
2000-06-15 14:55:34 -04:00
|
|
|
mSQL-interface \
|
2001-02-10 07:07:12 -05:00
|
|
|
mac \
|
2001-05-09 19:00:44 -04:00
|
|
|
metaphone \
|
2000-06-15 14:55:34 -04:00
|
|
|
miscutil \
|
|
|
|
|
noupdate \
|
2001-02-09 22:44:06 -05:00
|
|
|
oid2name \
|
2001-03-13 19:57:43 -05:00
|
|
|
pg_controldata \
|
2000-06-15 14:55:34 -04:00
|
|
|
pg_dumplo \
|
2001-02-10 21:18:48 -05:00
|
|
|
pg_logger \
|
2001-03-13 19:57:43 -05:00
|
|
|
pg_resetxlog \
|
2000-06-15 14:55:34 -04:00
|
|
|
pgbench \
|
2000-10-31 08:11:28 -05:00
|
|
|
pgcrypto \
|
2000-12-20 12:22:26 -05:00
|
|
|
rserv \
|
2001-05-31 14:27:18 -04:00
|
|
|
rtree_gist \
|
2001-02-10 07:07:12 -05:00
|
|
|
seg \
|
2000-06-15 14:55:34 -04:00
|
|
|
soundex \
|
2001-02-10 07:07:12 -05:00
|
|
|
spi \
|
2000-06-15 14:55:34 -04:00
|
|
|
string \
|
|
|
|
|
tips \
|
|
|
|
|
unixdate \
|
|
|
|
|
userlock \
|
|
|
|
|
vacuumlo
|
|
|
|
|
|
2000-07-16 10:50:44 -04:00
|
|
|
all install installdirs uninstall clean distclean maintainer-clean:
|
2000-06-15 14:55:34 -04:00
|
|
|
for dir in $(WANTED_DIRS); do \
|
2001-03-13 14:28:02 -05:00
|
|
|
if [ -f $$dir/Makefile ]; then \
|
2000-09-18 16:11:37 -04:00
|
|
|
$(MAKE) -C $$dir $@; \
|
2000-06-15 14:55:34 -04:00
|
|
|
fi; \
|
|
|
|
|
done
|