2016-02-16 02:00:45 +08:00
|
|
|
# Makefile to generate the extension out of separate sql source files.
|
|
|
|
# Once a version is released, it is not meant to be changed. E.g: once version 0.0.1 is out, it SHALL NOT be changed.
|
|
|
|
|
2016-02-16 01:29:43 +08:00
|
|
|
EXTENSION = crankshaft
|
|
|
|
EXTVERSION = $(shell grep default_version $(EXTENSION).control | sed -e "s/default_version[[:space:]]*=[[:space:]]*'\([^']*\)'/\1/")
|
|
|
|
|
2016-02-16 02:00:45 +08:00
|
|
|
# The new version to be generated from templates
|
|
|
|
NEW_EXTENSION_ARTIFACT = dist/$(EXTENSION)--$(EXTVERSION).sql
|
|
|
|
|
|
|
|
# DATA is a special variable used by postgres build infrastructure
|
|
|
|
# These are the files to be installed in the server shared dir,
|
|
|
|
# for installation from scratch, upgrades and downgrades.
|
|
|
|
# @see http://www.postgresql.org/docs/current/static/extend-pgxs.html
|
|
|
|
DATA = $(NEW_EXTENSION_ARTIFACT)
|
2016-02-16 01:29:43 +08:00
|
|
|
|
2016-02-16 02:00:45 +08:00
|
|
|
SOURCES_DATA_DIR = sql/$(EXTVERSION)
|
2016-02-16 01:29:43 +08:00
|
|
|
SOURCES_DATA = $(wildcard sql/$(EXTVERSION)/*.sql)
|
|
|
|
|
2016-02-16 02:00:45 +08:00
|
|
|
# The extension installation artifacts are stored in the dist subdirectory
|
|
|
|
$(NEW_EXTENSION_ARTIFACT): $(SOURCES_DATA)
|
2016-02-16 01:29:43 +08:00
|
|
|
rm -f $@
|
|
|
|
cat $(SOURCES_DATA_DIR)/*.sql >> $@
|
|
|
|
|
2016-02-16 02:00:45 +08:00
|
|
|
# The PGXS build infraestructure takes the control file from this
|
|
|
|
# directory, but for consistency we will copy the control file to
|
|
|
|
# the dist subdirectory too.
|
2016-02-16 01:29:43 +08:00
|
|
|
dist/$(EXTENSION).control: $(EXTENSION).control
|
|
|
|
cp $< $@
|
|
|
|
|
2016-02-16 02:00:45 +08:00
|
|
|
all: dist/$(EXTENSION).control
|
|
|
|
|
|
|
|
REGRESS = $(notdir $(basename $(wildcard test/$(EXTVERSION)/sql/*test.sql)))
|
|
|
|
TEST_DIR = test/$(EXTVERSION)
|
2016-02-16 01:29:43 +08:00
|
|
|
REGRESS_OPTS = --inputdir='$(TEST_DIR)' --outputdir='$(TEST_DIR)'
|
|
|
|
|
|
|
|
PG_CONFIG = pg_config
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
|
|
include $(PGXS)
|