]> granicus.if.org Git - postgresql/blob - contrib/Makefile
Remove useless pg_audit.conf
[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_audit        \
32                 pg_buffercache  \
33                 pg_freespacemap \
34                 pg_prewarm      \
35                 pg_standby      \
36                 pg_stat_statements \
37                 pg_trgm         \
38                 pgcrypto        \
39                 pgrowlocks      \
40                 pgstattuple     \
41                 postgres_fdw    \
42                 seg             \
43                 spi             \
44                 tablefunc       \
45                 tcn             \
46                 test_decoding   \
47                 tsearch2        \
48                 unaccent        \
49                 vacuumlo
50
51 ifeq ($(with_openssl),yes)
52 SUBDIRS += sslinfo
53 else
54 ALWAYS_SUBDIRS += sslinfo
55 endif
56
57 ifneq ($(with_uuid),no)
58 SUBDIRS += uuid-ossp
59 else
60 ALWAYS_SUBDIRS += uuid-ossp
61 endif
62
63 ifeq ($(with_libxml),yes)
64 SUBDIRS += xml2
65 else
66 ALWAYS_SUBDIRS += xml2
67 endif
68
69 ifeq ($(with_selinux),yes)
70 SUBDIRS += sepgsql
71 else
72 ALWAYS_SUBDIRS += sepgsql
73 endif
74
75 ifeq ($(with_perl),yes)
76 SUBDIRS += hstore_plperl
77 else
78 ALWAYS_SUBDIRS += hstore_plperl
79 endif
80
81 ifeq ($(with_python),yes)
82 SUBDIRS += hstore_plpython ltree_plpython
83 else
84 ALWAYS_SUBDIRS += hstore_plpython ltree_plpython
85 endif
86
87 # Missing:
88 #               start-scripts   \ (does not have a makefile)
89
90
91 $(recurse)
92 $(recurse_always)