]> granicus.if.org Git - postgresql/blob - contrib/Makefile
Fix REFRESH MATERIALIZED VIEW to report activity to the stats collector.
[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                 amcheck         \
10                 auth_delay      \
11                 auto_explain    \
12                 bloom           \
13                 btree_gin       \
14                 btree_gist      \
15                 chkpass         \
16                 citext          \
17                 cube            \
18                 dblink          \
19                 dict_int        \
20                 dict_xsyn       \
21                 earthdistance   \
22                 file_fdw        \
23                 fuzzystrmatch   \
24                 hstore          \
25                 intagg          \
26                 intarray        \
27                 isn             \
28                 lo              \
29                 ltree           \
30                 oid2name        \
31                 pageinspect     \
32                 passwordcheck   \
33                 pg_buffercache  \
34                 pg_freespacemap \
35                 pg_prewarm      \
36                 pg_standby      \
37                 pg_stat_statements \
38                 pg_trgm         \
39                 pgcrypto        \
40                 pgrowlocks      \
41                 pgstattuple     \
42                 pg_visibility   \
43                 postgres_fdw    \
44                 seg             \
45                 spi             \
46                 tablefunc       \
47                 tcn             \
48                 test_decoding   \
49                 tsm_system_rows \
50                 tsm_system_time \
51                 unaccent        \
52                 vacuumlo
53
54 ifeq ($(with_openssl),yes)
55 SUBDIRS += sslinfo
56 else
57 ALWAYS_SUBDIRS += sslinfo
58 endif
59
60 ifneq ($(with_uuid),no)
61 SUBDIRS += uuid-ossp
62 else
63 ALWAYS_SUBDIRS += uuid-ossp
64 endif
65
66 ifeq ($(with_libxml),yes)
67 SUBDIRS += xml2
68 else
69 ALWAYS_SUBDIRS += xml2
70 endif
71
72 ifeq ($(with_selinux),yes)
73 SUBDIRS += sepgsql
74 else
75 ALWAYS_SUBDIRS += sepgsql
76 endif
77
78 ifeq ($(with_perl),yes)
79 SUBDIRS += hstore_plperl
80 else
81 ALWAYS_SUBDIRS += hstore_plperl
82 endif
83
84 ifeq ($(with_python),yes)
85 SUBDIRS += hstore_plpython ltree_plpython
86 else
87 ALWAYS_SUBDIRS += hstore_plpython ltree_plpython
88 endif
89
90 # Missing:
91 #               start-scripts   \ (does not have a makefile)
92
93
94 $(recurse)
95 $(recurse_always)