-
-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathMakefile
More file actions
49 lines (44 loc) · 832 Bytes
/
Makefile
File metadata and controls
49 lines (44 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Global makefile for pg_plugins
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
SUBDIRS = blackhole \
blackhole_am \
compress_test \
count_relations \
custom_wal \
decoder_raw \
hello_notify \
hello_signal \
hello_world \
hint_parser \
hmac_funcs \
hook_utility \
jsonlog \
kill_idle \
lwlock_test \
mcxtalloc_test \
object_hooks \
overflow \
passwordcheck_extra \
pg_fix_truncation \
pg_panic \
pg_rusage \
pg_sasl_prepare \
pg_statvfs \
pg_swap_pages \
pg_trunc2del \
pg_wal_blocks \
receiver_raw \
scram_utils \
wal_utils
# This can only be compiled on Linux.
ifeq ($(PORTNAME), linux)
SUBDIRS += pg_mark_glibc
endif
# This module requires libmpdclient, so disable except if asked
ifeq ($(with_libmpdclient), yes)
SUBDIRS += pgmpc
endif
$(recurse)
$(recurse_always)