OSDN Git Service

Fix typo
[pg-rex/syncrep.git] / contrib / Makefile
1 # contrib/Makefile
2
3 subdir = contrib
4 top_builddir = ..
5 include $(top_builddir)/src/Makefile.global
6
7 SUBDIRS = \
8                 adminpack       \
9                 auth_delay      \
10                 auto_explain    \
11                 btree_gin       \
12                 btree_gist      \
13                 chkpass         \
14                 citext          \
15                 cube            \
16                 dblink          \
17                 dict_int        \
18                 dict_xsyn       \
19                 dummy_seclabel  \
20                 earthdistance   \
21                 file_fdw        \
22                 fuzzystrmatch   \
23                 hstore          \
24                 intagg          \
25                 intarray        \
26                 isn             \
27                 lo              \
28                 ltree           \
29                 oid2name        \
30                 pageinspect     \
31                 passwordcheck   \
32                 pg_archivecleanup \
33                 pg_buffercache  \
34                 pg_freespacemap \
35                 pg_standby      \
36                 pg_stat_statements \
37                 pg_test_fsync   \
38                 pg_trgm         \
39                 pg_upgrade      \
40                 pg_upgrade_support \
41                 pgbench         \
42                 pgcrypto        \
43                 pgrowlocks      \
44                 pgstattuple     \
45                 seg             \
46                 spi             \
47                 tablefunc       \
48                 test_parser     \
49                 tsearch2        \
50                 unaccent        \
51                 vacuumlo
52
53 ifeq ($(with_openssl),yes)
54 SUBDIRS += sslinfo
55 endif
56
57 ifeq ($(with_ossp_uuid),yes)
58 SUBDIRS += uuid-ossp
59 endif
60
61 ifeq ($(with_libxml),yes)
62 SUBDIRS += xml2
63 endif
64
65 ifeq ($(with_selinux),yes)
66 SUBDIRS += sepgsql
67 endif
68
69 # Missing:
70 #               start-scripts   \ (does not have a makefile)
71
72
73 $(recurse)