postgresql/contrib/Makefile

58 lines
1.1 KiB
Makefile
Raw Normal View History

# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.28 2001/09/29 03:11:58 momjian Exp $
2000-06-15 20:55:34 +02:00
subdir = contrib
top_builddir = ..
include $(top_builddir)/src/Makefile.global
2000-06-15 20:55:34 +02:00
WANTED_DIRS = \
array \
btree_gist \
2001-08-23 18:54:25 +02:00
chkpass \
2000-12-11 21:40:59 +01:00
cube \
dbase \
2001-06-18 19:20:56 +02:00
dblink \
2000-06-15 20:55:34 +02:00
earthdistance \
findoidjoins \
fulltextindex \
fuzzystrmatch \
intarray \
2000-06-15 20:55:34 +02:00
isbn_issn \
2001-02-10 13:07:12 +01:00
lo \
2000-06-15 20:55:34 +02:00
miscutil \
noupdate \
oid2name \
pg_controldata \
2000-06-15 20:55:34 +02:00
pg_dumplo \
2001-02-11 03:18:48 +01:00
pg_logger \
pg_resetxlog \
2000-06-15 20:55:34 +02:00
pgbench \
pgcrypto \
rserv \
rtree_gist \
2001-02-10 13:07:12 +01:00
seg \
spi \
2000-06-15 20:55:34 +02:00
string \
tips \
userlock \
vacuumlo
# 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 20:55:34 +02:00
ifeq ($(with_java),yes)
WANTED_DIRS += retep
endif
all install installdirs uninstall clean distclean maintainer-clean check installcheck:
@for dir in $(WANTED_DIRS); do \
$(MAKE) -C $$dir $@ || exit; \
2000-06-15 20:55:34 +02:00
done