mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-27 07:21:09 +08:00
25fee5cfbd
standalone utility for removing files from archive.
76 lines
1.3 KiB
Makefile
76 lines
1.3 KiB
Makefile
# $PostgreSQL: pgsql/contrib/Makefile,v 1.93 2010/06/14 16:17:56 sriggs Exp $
|
|
|
|
subdir = contrib
|
|
top_builddir = ..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
SUBDIRS = \
|
|
adminpack \
|
|
auto_explain \
|
|
btree_gin \
|
|
btree_gist \
|
|
chkpass \
|
|
citext \
|
|
cube \
|
|
dblink \
|
|
dict_int \
|
|
dict_xsyn \
|
|
earthdistance \
|
|
fuzzystrmatch \
|
|
hstore \
|
|
intagg \
|
|
intarray \
|
|
isn \
|
|
lo \
|
|
ltree \
|
|
oid2name \
|
|
pageinspect \
|
|
passwordcheck \
|
|
pg_archivecleanup \
|
|
pg_buffercache \
|
|
pg_freespacemap \
|
|
pg_standby \
|
|
pg_stat_statements \
|
|
pg_trgm \
|
|
pg_upgrade \
|
|
pg_upgrade_support \
|
|
pgbench \
|
|
pgcrypto \
|
|
pgrowlocks \
|
|
pgstattuple \
|
|
seg \
|
|
spi \
|
|
tablefunc \
|
|
test_parser \
|
|
tsearch2 \
|
|
unaccent \
|
|
vacuumlo
|
|
|
|
ifeq ($(with_openssl),yes)
|
|
SUBDIRS += sslinfo
|
|
endif
|
|
|
|
ifeq ($(with_ossp_uuid),yes)
|
|
SUBDIRS += uuid-ossp
|
|
endif
|
|
|
|
ifeq ($(with_libxml),yes)
|
|
SUBDIRS += xml2
|
|
endif
|
|
|
|
# Missing:
|
|
# start-scripts \ (does not have a makefile)
|
|
|
|
|
|
all install installdirs uninstall distprep clean distclean maintainer-clean:
|
|
@for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir $@ || exit; \
|
|
done
|
|
|
|
# We'd like check operations to run all the subtests before failing.
|
|
check installcheck:
|
|
@CHECKERR=0; for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir $@ || CHECKERR=$$?; \
|
|
done; \
|
|
exit $$CHECKERR
|