2002-06-24 02:15:04 +04:00
|
|
|
# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.32 2002/06/23 22:15:04 momjian Exp $
|
2000-06-15 22:55:34 +04:00
|
|
|
|
2000-07-09 17:14:19 +04:00
|
|
|
subdir = contrib
|
|
|
|
top_builddir = ..
|
2000-09-19 00:11:37 +04:00
|
|
|
include $(top_builddir)/src/Makefile.global
|
2000-06-15 22:55:34 +04:00
|
|
|
|
2000-12-20 20:22:26 +03:00
|
|
|
WANTED_DIRS = \
|
|
|
|
array \
|
2001-08-22 22:27:54 +04:00
|
|
|
btree_gist \
|
2001-08-23 20:54:25 +04:00
|
|
|
chkpass \
|
2000-12-11 23:40:59 +03:00
|
|
|
cube \
|
2001-05-10 19:51:05 +04:00
|
|
|
dbase \
|
2001-06-18 21:20:56 +04:00
|
|
|
dblink \
|
2002-06-24 02:15:04 +04:00
|
|
|
dbmirror \
|
2002-02-23 02:05:35 +03:00
|
|
|
dbsize \
|
2000-06-15 22:55:34 +04:00
|
|
|
earthdistance \
|
|
|
|
findoidjoins \
|
|
|
|
fulltextindex \
|
2001-08-22 22:27:54 +04:00
|
|
|
fuzzystrmatch \
|
2001-01-16 01:20:00 +03:00
|
|
|
intarray \
|
2000-06-15 22:55:34 +04:00
|
|
|
isbn_issn \
|
2001-02-10 15:07:12 +03:00
|
|
|
lo \
|
2000-06-15 22:55:34 +04:00
|
|
|
miscutil \
|
|
|
|
noupdate \
|
2001-02-10 06:44:06 +03:00
|
|
|
oid2name \
|
2001-03-14 03:57:43 +03:00
|
|
|
pg_controldata \
|
2000-06-15 22:55:34 +04:00
|
|
|
pg_dumplo \
|
2001-02-11 05:18:48 +03:00
|
|
|
pg_logger \
|
2001-03-14 03:57:43 +03:00
|
|
|
pg_resetxlog \
|
2000-06-15 22:55:34 +04:00
|
|
|
pgbench \
|
2001-09-29 07:11:58 +04:00
|
|
|
pgcrypto \
|
2001-10-01 05:52:38 +04:00
|
|
|
pgstattuple \
|
2000-12-20 20:22:26 +03:00
|
|
|
rserv \
|
2001-05-31 22:27:18 +04:00
|
|
|
rtree_gist \
|
2001-02-10 15:07:12 +03:00
|
|
|
seg \
|
|
|
|
spi \
|
2000-06-15 22:55:34 +04:00
|
|
|
string \
|
|
|
|
tips \
|
2001-10-13 03:19:09 +04:00
|
|
|
tsearch \
|
2000-06-15 22:55:34 +04:00
|
|
|
userlock \
|
2001-09-06 14:49:30 +04:00
|
|
|
vacuumlo
|
|
|
|
|
2001-10-13 03:19:09 +04:00
|
|
|
ifeq ($(with_java),yes)
|
|
|
|
WANTED_DIRS += retep
|
|
|
|
endif
|
|
|
|
|
2001-09-06 14:49:30 +04:00
|
|
|
# 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 22:55:34 +04:00
|
|
|
|
2001-07-07 03:07:20 +04:00
|
|
|
|
2001-09-06 14:49:30 +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 22:55:34 +04:00
|
|
|
done
|