dataservices-api/server/extension/Makefile

41 lines
1.4 KiB
Makefile
Raw Normal View History

2015-11-07 00:22:39 +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.
EXTENSION = cdb_dataservices_server
2015-11-07 00:22:39 +08:00
EXTVERSION = $(shell grep default_version $(EXTENSION).control | sed -e "s/default_version[[:space:]]*=[[:space:]]*'\([^']*\)'/\1/")
# The new version to be generated from templates
NEW_EXTENSION_ARTIFACT = $(EXTENSION)--$(EXTVERSION).sql
2016-03-07 22:46:04 +08:00
OLD_VERSIONS = $(wildcard old_versions/*.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-03-07 22:46:04 +08:00
$(OLD_VERSIONS) \
cdb_dataservices_server--0.8.0--0.9.0.sql \
cdb_dataservices_server--0.9.0--0.8.0.sql
2015-11-07 00:22:39 +08:00
2016-03-18 05:47:18 +08:00
REGRESS = $(notdir $(basename $(wildcard test/sql/*test.sql)))
TEST_DIR = test/
REGRESS_OPTS = --inputdir='$(TEST_DIR)' --outputdir='$(TEST_DIR)'
2015-11-07 00:22:39 +08:00
# postgres build stuff
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
2016-03-18 05:47:18 +08:00
SOURCES_DATA_DIR = sql/
2016-03-18 05:47:18 +08:00
SOURCES_DATA = $(wildcard sql/*.sql)
2015-11-07 00:22:39 +08:00
$(NEW_EXTENSION_ARTIFACT): $(SOURCES_DATA)
rm -f $@
cat $(SOURCES_DATA_DIR)/*.sql >> $@
2015-11-07 00:22:39 +08:00
all: $(DATA)
# Only meant for development time, do not use once a version is released
devclean:
rm -f $(NEW_EXTENSION_ARTIFACT)