postgresql/contrib/Makefile

95 lines
1.3 KiB
Makefile
Raw Normal View History

2010-09-20 22:08:53 +02:00
# contrib/Makefile
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
SUBDIRS = \
adminpack \
auth_delay \
auto_explain \
bloom \
btree_gin \
btree_gist \
2001-08-23 18:54:25 +02:00
chkpass \
citext \
2000-12-11 21:40:59 +01:00
cube \
2001-06-18 19:20:56 +02:00
dblink \
dict_int \
dict_xsyn \
earthdistance \
file_fdw \
fuzzystrmatch \
hstore \
2002-08-30 03:44:00 +02:00
intagg \
intarray \
isn \
2001-02-10 13:07:12 +01:00
lo \
ltree \
oid2name \
pageinspect \
passwordcheck \
pg_buffercache \
pg_freespacemap \
pg_prewarm \
pg_standby \
pg_stat_statements \
pg_trgm \
pgcrypto \
2006-04-23 04:17:59 +02:00
pgrowlocks \
2001-10-01 03:52:38 +02:00
pgstattuple \
pg_visibility \
postgres_fdw \
2001-02-10 13:07:12 +01:00
seg \
spi \
2002-07-30 18:32:20 +02:00
tablefunc \
tcn \
test_decoding \
2015-05-15 21:33:37 +02:00
tsm_system_rows \
tsm_system_time \
2009-08-18 12:34:39 +02: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 14:48:24 +02:00
ifeq ($(with_libxml),yes)
SUBDIRS += xml2
else
ALWAYS_SUBDIRS += xml2
2007-04-15 14:48:24 +02: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 14:48:24 +02:00
$(recurse)
$(recurse_always)