2015-11-10 22:28:12 +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_geocoder_client
|
|
|
|
EXTVERSION = $(shell grep default_version $(EXTENSION).control | sed -e "s/default_version[[:space:]]*=[[:space:]]*'\([^']*\)'/\1/")
|
|
|
|
|
2016-01-22 23:14:11 +08:00
|
|
|
# The new version to be generated from templates
|
|
|
|
NEW_EXTENSION_ARTIFACT = $(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) \
|
|
|
|
cdb_geocoder_client--0.0.1.sql \
|
|
|
|
cdb_geocoder_client--0.1.0--0.0.1.sql \
|
|
|
|
cdb_geocoder_client--0.0.1--0.1.0.sql
|
|
|
|
|
2016-01-22 17:37:40 +08:00
|
|
|
|
2016-01-22 19:55:36 +08:00
|
|
|
REGRESS = $(notdir $(basename $(wildcard test/$(EXTVERSION)/sql/*test.sql)))
|
2016-01-22 23:23:31 +08:00
|
|
|
TEST_DIR = test/$(EXTVERSION)
|
|
|
|
REGRESS_OPTS = --inputdir='$(TEST_DIR)' --outputdir='$(TEST_DIR)'
|
2015-11-10 22:28:12 +08:00
|
|
|
|
|
|
|
# postgres build stuff
|
|
|
|
PG_CONFIG = pg_config
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
|
|
include $(PGXS)
|
|
|
|
|
2015-11-18 23:17:36 +08:00
|
|
|
SOURCES_DATA_DIR = sql/$(EXTVERSION)
|
2015-11-10 22:28:12 +08:00
|
|
|
|
2015-11-18 23:17:36 +08:00
|
|
|
# The interface definition is used along with some templates to automatically generate code
|
2016-02-04 22:18:19 +08:00
|
|
|
RENDERER = renderer/sql-template-renderer
|
|
|
|
INTERFACE_FILE = renderer/interfaces/interface_$(EXTVERSION).yaml
|
|
|
|
TEMPLATE_DIR = renderer/templates
|
2015-11-18 23:17:36 +08:00
|
|
|
TEMPLATE_FILES = $(wildcard $(TEMPLATE_DIR)/*.erb)
|
|
|
|
GENERATED_SQL_FILES = $(patsubst $(TEMPLATE_DIR)/%.erb, $(SOURCES_DATA_DIR)/%.sql, $(TEMPLATE_FILES))
|
|
|
|
|
|
|
|
$(GENERATED_SQL_FILES): $(SOURCES_DATA_DIR)/%.sql: $(TEMPLATE_DIR)/%.erb $(INTERFACE_FILE) $(RENDERER)
|
|
|
|
$(RENDERER) $(INTERFACE_FILE) $< > $@
|
|
|
|
|
2015-11-19 01:38:06 +08:00
|
|
|
SOURCES_DATA = $(wildcard $(SOURCES_DATA_DIR)/*.sql) $(GENERATED_SQL_FILES)
|
2015-11-10 22:28:12 +08:00
|
|
|
|
2016-01-22 23:14:11 +08:00
|
|
|
$(NEW_EXTENSION_ARTIFACT): $(SOURCES_DATA)
|
2015-11-10 22:28:12 +08:00
|
|
|
rm -f $@
|
2015-11-19 01:38:06 +08:00
|
|
|
cat $(SOURCES_DATA_DIR)/*.sql >> $@
|
2015-11-10 22:28:12 +08:00
|
|
|
|
2015-11-19 01:38:06 +08:00
|
|
|
all: $(DATA)
|
2015-11-10 22:28:12 +08:00
|
|
|
|
|
|
|
# Only meant for development time, do not use once a version is released
|
|
|
|
devclean:
|
2016-01-22 23:14:11 +08:00
|
|
|
rm -f $(NEW_EXTENSION_ARTIFACT)
|
2015-11-19 01:38:06 +08:00
|
|
|
rm -f $(GENERATED_SQL_FILES)
|