forked from okbob/plpgsql_check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
32 lines (25 loc) · 825 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
# $PostgreSQL: pgsql/contrib/plpgsql_check/Makefile
MODULE_big = plpgsql_check
OBJS = $(patsubst %.c,%.o,$(wildcard src/*.c))
DATA = plpgsql_check--2.4.sql
EXTENSION = plpgsql_check
ifndef MAJORVERSION
MAJORVERSION := $(basename $(VERSION))
endif
REGRESS_OPTS = --dbname=$(PL_TESTDB)
REGRESS = plpgsql_check_passive plpgsql_check_active plpgsql_check_active-$(MAJORVERSION) plpgsql_check_passive-$(MAJORVERSION)
override CFLAGS += -g
ifdef NO_PGXS
subdir = contrib/plpgsql_check
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
else
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
endif
ifeq ($(PORTNAME), darwin)
override CFLAGS += -undefined dynamic_lookup
endif
override CFLAGS += -I$(top_builddir)/src/pl/plpgsql/src -Wall