80 lines
1.1 KiB
Makefile
80 lines
1.1 KiB
Makefile
# contrib/Makefile
|
|
|
|
subdir = contrib
|
|
top_builddir = ..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
SUBDIRS = \
|
|
adminpack \
|
|
auth_delay \
|
|
auto_explain \
|
|
btree_gin \
|
|
btree_gist \
|
|
chkpass \
|
|
citext \
|
|
cube \
|
|
dblink \
|
|
dict_int \
|
|
dict_xsyn \
|
|
dummy_seclabel \
|
|
earthdistance \
|
|
file_fdw \
|
|
fuzzystrmatch \
|
|
hstore \
|
|
log_fdw \
|
|
intagg \
|
|
intarray \
|
|
isn \
|
|
lo \
|
|
ltree \
|
|
oid2name \
|
|
pagehack \
|
|
pageinspect \
|
|
passwordcheck \
|
|
pg_archivecleanup \
|
|
pg_buffercache \
|
|
pg_freespacemap \
|
|
pg_standby \
|
|
pg_stat_statements \
|
|
pg_test_fsync \
|
|
pg_test_timing \
|
|
pg_trgm \
|
|
pg_upgrade_support \
|
|
pg_xlogdump \
|
|
pgbench \
|
|
pgcrypto \
|
|
pgrowlocks \
|
|
pgstattuple \
|
|
seg \
|
|
spi \
|
|
tablefunc \
|
|
tcn \
|
|
test_decoding \
|
|
mppdb_decoding \
|
|
test_parser \
|
|
tsearch2 \
|
|
unaccent \
|
|
vacuumlo \
|
|
security_plugin
|
|
|
|
ifeq ($(with_openssl),yes)
|
|
SUBDIRS += sslinfo
|
|
else
|
|
ALWAYS_SUBDIRS += sslinfo
|
|
endif
|
|
|
|
ifeq ($(with_libxml),yes)
|
|
SUBDIRS += xml2
|
|
else
|
|
ALWAYS_SUBDIRS += xml2
|
|
endif
|
|
|
|
ifeq ($(with_selinux),yes)
|
|
SUBDIRS += sepgsql
|
|
else
|
|
ALWAYS_SUBDIRS += sepgsql
|
|
endif
|
|
|
|
$(recurse)
|
|
$(recurse_always)
|