]> granicus.if.org Git - postgresql/blob - contrib/Makefile
btree_gin: properly call DirectFunctionCall1()
[postgresql] / 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                 earthdistance   \
20                 file_fdw        \
21                 fuzzystrmatch   \
22                 hstore          \
23                 intagg          \
24                 intarray        \
25                 isn             \
26                 lo              \
27                 ltree           \
28                 oid2name        \
29                 pageinspect     \
30                 passwordcheck   \
31                 pg_archivecleanup \
32                 pg_buffercache  \
33                 pg_freespacemap \
34                 pg_prewarm      \
35                 pg_standby      \
36                 pg_stat_statements \
37                 pg_test_fsync   \
38                 pg_test_timing  \
39                 pg_trgm         \
40                 pg_upgrade      \
41                 pg_upgrade_support \
42                 pgbench         \
43                 pgcrypto        \
44                 pgrowlocks      \
45                 pgstattuple     \
46                 pg_xlogdump     \
47                 postgres_fdw    \
48                 seg             \
49                 spi             \
50                 tablefunc       \
51                 tcn             \
52                 test_decoding   \
53                 tsearch2        \
54                 unaccent        \
55                 vacuumlo
56
57 ifeq ($(with_openssl),yes)
58 SUBDIRS += sslinfo
59 else
60 ALWAYS_SUBDIRS += sslinfo
61 endif
62
63 ifneq ($(with_uuid),no)
64 SUBDIRS += uuid-ossp
65 else
66 ALWAYS_SUBDIRS += uuid-ossp
67 endif
68
69 ifeq ($(with_libxml),yes)
70 SUBDIRS += xml2
71 else
72 ALWAYS_SUBDIRS += xml2
73 endif
74
75 ifeq ($(with_selinux),yes)
76 SUBDIRS += sepgsql
77 else
78 ALWAYS_SUBDIRS += sepgsql
79 endif
80
81 # Missing:
82 #               start-scripts   \ (does not have a makefile)
83
84
85 $(recurse)
86 $(recurse_always)