mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-27 07:21:09 +08:00
dff84dc762
remove the old isbn_issn module which is about to be obsoleted by EAN13. contrib/isn is by Germán Méndez Bravo. Our thanks to Garrett A. Wollman for having written the original isbn_issn module.
58 lines
1.1 KiB
Makefile
58 lines
1.1 KiB
Makefile
# $PostgreSQL: pgsql/contrib/Makefile,v 1.70 2006/09/09 04:07:51 tgl Exp $
|
|
|
|
subdir = contrib
|
|
top_builddir = ..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
WANTED_DIRS = \
|
|
adminpack \
|
|
btree_gist \
|
|
chkpass \
|
|
cube \
|
|
dblink \
|
|
earthdistance \
|
|
fuzzystrmatch \
|
|
hstore \
|
|
intagg \
|
|
intarray \
|
|
isn \
|
|
lo \
|
|
ltree \
|
|
oid2name \
|
|
pg_buffercache \
|
|
pg_freespacemap \
|
|
pg_trgm \
|
|
pgbench \
|
|
pgcrypto \
|
|
pgrowlocks \
|
|
pgstattuple \
|
|
seg \
|
|
spi \
|
|
tablefunc \
|
|
tsearch2 \
|
|
vacuumlo
|
|
|
|
ifeq ($(with_openssl),yes)
|
|
WANTED_DIRS += sslinfo
|
|
endif
|
|
|
|
# Missing:
|
|
# start-scripts \ (does not have a makefile)
|
|
# xml2 \ (requires libxml installed)
|
|
|
|
|
|
all install installdirs uninstall distprep clean distclean maintainer-clean:
|
|
@for dir in $(WANTED_DIRS); do \
|
|
$(MAKE) -C $$dir $@ || exit; \
|
|
done
|
|
|
|
# We'd like check operations to run all the subtests before failing;
|
|
# also insert a sleep to ensure the previous test backend exited before
|
|
# we try to drop the regression database.
|
|
check installcheck:
|
|
@CHECKERR=0; for dir in $(WANTED_DIRS); do \
|
|
sleep 1; \
|
|
$(MAKE) -C $$dir $@ || CHECKERR=$$?; \
|
|
done; \
|
|
exit $$CHECKERR
|