-
Notifications
You must be signed in to change notification settings - Fork 9
/
Makefile
41 lines (37 loc) · 918 Bytes
/
Makefile
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
#
# pg_statsinfo: Makefile
#
# Copyright (c) 2009-2024, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
#
SUBDIRS = agent reporter
REGTEST = \
function-snapshot \
function-snapshot_replication \
function-logger \
function-logstore \
function-alert \
function-maintenance \
function-report \
function-command_option
ifndef USE_PGXS
top_builddir = ../..
makefile_global = $(top_builddir)/src/Makefile.global
ifeq "$(wildcard $(makefile_global))" ""
USE_PGXS = 1 # use pgxs if not in contrib directory
endif
endif
ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = pg_statsinfo
include $(makefile_global)
include $(top_srcdir)/contrib/contrib-global.mk
endif
all install installdirs uninstall distprep clean distclean maintainer-clean:
@for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir $@ || exit; \
done
installcheck:
( cd test && ./regress.sh $(REGTEST))