mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-09 08:10:09 +08:00
7c5d0ae707
This is both very useful in its own right, and an important test case for the core FDW support. This commit includes a small refactoring of copy.c to expose its option checking code as a separately callable function. The original patch submission duplicated hundreds of lines of that code, which seemed pretty unmaintainable. Shigeru Hanada, reviewed by Itagaki Takahiro and Tom Lane
74 lines
1.0 KiB
Makefile
74 lines
1.0 KiB
Makefile
# contrib/Makefile
|
|
|
|
subdir = contrib
|
|
top_builddir = ..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
SUBDIRS = \
|
|
adminpack \
|
|
auth_delay \
|
|
auto_explain \
|
|
btree_gin \
|
|
btree_gist \
|
|
chkpass \
|
|
citext \
|
|
cube \
|
|
dblink \
|
|
dict_int \
|
|
dict_xsyn \
|
|
dummy_seclabel \
|
|
earthdistance \
|
|
file_fdw \
|
|
fuzzystrmatch \
|
|
hstore \
|
|
intagg \
|
|
intarray \
|
|
isn \
|
|
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 \
|
|
pgbench \
|
|
pgcrypto \
|
|
pgrowlocks \
|
|
pgstattuple \
|
|
seg \
|
|
spi \
|
|
tablefunc \
|
|
test_parser \
|
|
tsearch2 \
|
|
unaccent \
|
|
vacuumlo
|
|
|
|
ifeq ($(with_openssl),yes)
|
|
SUBDIRS += sslinfo
|
|
endif
|
|
|
|
ifeq ($(with_ossp_uuid),yes)
|
|
SUBDIRS += uuid-ossp
|
|
endif
|
|
|
|
ifeq ($(with_libxml),yes)
|
|
SUBDIRS += xml2
|
|
endif
|
|
|
|
ifeq ($(with_selinux),yes)
|
|
SUBDIRS += sepgsql
|
|
endif
|
|
|
|
# Missing:
|
|
# start-scripts \ (does not have a makefile)
|
|
|
|
|
|
$(recurse)
|