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