postgresql/contrib/Makefile

74 lines
1.0 KiB
Makefile
Raw Normal View History

2010-09-21 04:08:53 +08:00
# contrib/Makefile
2000-06-16 02:55:34 +08:00
subdir = contrib
top_builddir = ..
include $(top_builddir)/src/Makefile.global
2000-06-16 02:55:34 +08:00
SUBDIRS = \
adminpack \
auth_delay \
auto_explain \
btree_gin \
btree_gist \
2001-08-24 00:54:25 +08:00
chkpass \
citext \
2000-12-12 04:40:59 +08:00
cube \
2001-06-19 01:20:56 +08:00
dblink \
dict_int \
dict_xsyn \
dummy_seclabel \
earthdistance \
file_fdw \
fuzzystrmatch \
hstore \
2002-08-30 09:44:00 +08:00
intagg \
intarray \
isn \
2001-02-10 20:07:12 +08:00
lo \
ltree \
oid2name \
pageinspect \
passwordcheck \
pg_archivecleanup \
pg_buffercache \
pg_freespacemap \
pg_standby \
pg_stat_statements \
pg_test_fsync \
pg_trgm \
pg_upgrade \
pg_upgrade_support \
2000-06-16 02:55:34 +08:00
pgbench \
pgcrypto \
2006-04-23 10:17:59 +08:00
pgrowlocks \
2001-10-01 09:52:38 +08:00
pgstattuple \
2001-02-10 20:07:12 +08:00
seg \
spi \
2002-07-31 00:32:20 +08:00
tablefunc \
test_parser \
tsearch2 \
2009-08-18 18:34:39 +08:00
unaccent \
vacuumlo
ifeq ($(with_openssl),yes)
SUBDIRS += sslinfo
endif
ifeq ($(with_ossp_uuid),yes)
SUBDIRS += uuid-ossp
endif
2007-04-15 20:48:24 +08:00
ifeq ($(with_libxml),yes)
SUBDIRS += xml2
2007-04-15 20:48:24 +08:00
endif
ifeq ($(with_selinux),yes)
SUBDIRS += sepgsql
endif
# Missing:
# start-scripts \ (does not have a makefile)
2007-04-15 20:48:24 +08:00
$(recurse)