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