- Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathMakefile
22 lines (17 loc) · 539 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# contrib/pg_wait_sampling/Makefile
MODULE_big = pg_wait_sampling
OBJS = pg_wait_sampling.o collector.o
EXTENSION = pg_wait_sampling
DATA = pg_wait_sampling--1.1.sql pg_wait_sampling--1.0--1.1.sql
REGRESS = load queries
EXTRA_REGRESS_OPTS=--temp-config=$(top_srcdir)/$(subdir)/conf.add
ifdefUSE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell$(PG_CONFIG) --pgxs)
include$(PGXS)
else
subdir = contrib/pg_wait_sampling
top_builddir = ../..
include$(top_builddir)/src/Makefile.global
include$(top_srcdir)/contrib/contrib-global.mk
endif