-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
23 lines (19 loc) · 880 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
EXTENSION = pg_bofh
EXTVERSION = $(shell grep default_version $(EXTENSION).control | sed -e "s/default_version[[:space:]]*=[[:space:]]*'\([^']*\)'/\1/")
TESTS = $(wildcard test/sql/*.sql)
REGRESS = $(patsubst test/sql/%.sql,%,$(TESTS))
REGRESS_OPTS = --inputdir=test
#DOCS = $(wildcard doc/*.md)
MODULES = $(patsubst %.c,%,$(wildcard *.c))
PG_CONFIG = pg_config
all:
release-zip: all
git archive --format zip --prefix=$(EXTENSION)-$(EXTVERSION)/ --output ./$(EXTENSION)-$(EXTVERSION).zip HEAD
unzip ./$(EXTENSION)-$(EXTVERSION).zip
rm ./$(EXTENSION)-$(EXTVERSION).zip
sed -i -e "s/__VERSION__/$(EXTVERSION)/g" ./$(EXTENSION)-$(EXTVERSION)/META.json
zip -r ./$(EXTENSION)-$(EXTVERSION).zip ./$(EXTENSION)-$(EXTVERSION)/
rm ./$(EXTENSION)-$(EXTVERSION) -rf
DATA = $(wildcard *--*.sql)
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)