]> granicus.if.org Git - postgresql/blob - contrib/Makefile
hstore_plpython: Fix regression tests under Python 3
[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                 tsm_system_rows \
48                 tsm_system_time \
49                 tsearch2        \
50                 unaccent        \
51                 vacuumlo
52
53 ifeq ($(with_openssl),yes)
54 SUBDIRS += sslinfo
55 else
56 ALWAYS_SUBDIRS += sslinfo
57 endif
58
59 ifneq ($(with_uuid),no)
60 SUBDIRS += uuid-ossp
61 else
62 ALWAYS_SUBDIRS += uuid-ossp
63 endif
64
65 ifeq ($(with_libxml),yes)
66 SUBDIRS += xml2
67 else
68 ALWAYS_SUBDIRS += xml2
69 endif
70
71 ifeq ($(with_selinux),yes)
72 SUBDIRS += sepgsql
73 else
74 ALWAYS_SUBDIRS += sepgsql
75 endif
76
77 ifeq ($(with_perl),yes)
78 SUBDIRS += hstore_plperl
79 else
80 ALWAYS_SUBDIRS += hstore_plperl
81 endif
82
83 ifeq ($(with_python),yes)
84 SUBDIRS += hstore_plpython ltree_plpython
85 else
86 ALWAYS_SUBDIRS += hstore_plpython ltree_plpython
87 endif
88
89 # Missing:
90 #               start-scripts   \ (does not have a makefile)
91
92
93 $(recurse)
94 $(recurse_always)