postgres/contrib/Makefile

96 lines
1.4 KiB
Makefile
Raw Normal View History

2010-09-21 00:08:53 +04:00
# contrib/Makefile
2000-06-15 22:55:34 +04:00
subdir = contrib
top_builddir = ..
include $(top_builddir)/src/Makefile.global
2000-06-15 22:55:34 +04:00
SUBDIRS = \
adminpack \
amcheck \
auth_delay \
auto_explain \
bloom \
btree_gin \
btree_gist \
2001-08-23 20:54:25 +04:00
chkpass \
citext \
2000-12-11 23:40:59 +03:00
cube \
2001-06-18 21:20:56 +04:00
dblink \
dict_int \
dict_xsyn \
earthdistance \
file_fdw \
fuzzystrmatch \
hstore \
2002-08-30 05:44:00 +04:00
intagg \
intarray \
isn \
2001-02-10 15:07:12 +03:00
lo \
ltree \
oid2name \
pageinspect \
passwordcheck \
pg_buffercache \
pg_freespacemap \
pg_prewarm \
pg_standby \
pg_stat_statements \
pg_trgm \
pgcrypto \
2006-04-23 06:17:59 +04:00
pgrowlocks \
2001-10-01 05:52:38 +04:00
pgstattuple \
pg_visibility \
postgres_fdw \
2001-02-10 15:07:12 +03:00
seg \
spi \
2002-07-30 20:32:20 +04:00
tablefunc \
tcn \
test_decoding \
2015-05-15 22:33:37 +03:00
tsm_system_rows \
tsm_system_time \
2009-08-18 14:34:39 +04:00
unaccent \
vacuumlo
ifeq ($(with_openssl),yes)
SUBDIRS += sslinfo
else
ALWAYS_SUBDIRS += sslinfo
endif
ifneq ($(with_uuid),no)
SUBDIRS += uuid-ossp
else
ALWAYS_SUBDIRS += uuid-ossp
endif
2007-04-15 16:48:24 +04:00
ifeq ($(with_libxml),yes)
SUBDIRS += xml2
else
ALWAYS_SUBDIRS += xml2
2007-04-15 16:48:24 +04:00
endif
ifeq ($(with_selinux),yes)
SUBDIRS += sepgsql
else
ALWAYS_SUBDIRS += sepgsql
endif
ifeq ($(with_perl),yes)
SUBDIRS += hstore_plperl
else
ALWAYS_SUBDIRS += hstore_plperl
endif
ifeq ($(with_python),yes)
SUBDIRS += hstore_plpython ltree_plpython
else
ALWAYS_SUBDIRS += hstore_plpython ltree_plpython
endif
# Missing:
# start-scripts \ (does not have a makefile)
2007-04-15 16:48:24 +04:00
$(recurse)
$(recurse_always)