Create update extension files for client too

This commit is contained in:
Mario de Frutos 2016-01-22 10:37:40 +01:00
parent 984519e7f1
commit bd8ec71855

View File

@ -2,8 +2,20 @@
# 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. # 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 EXTENSION = cdb_geocoder_client
EXTVERSION = $(shell grep default_version $(EXTENSION).control | sed -e "s/default_version[[:space:]]*=[[:space:]]*'\([^']*\)'/\1/") EXTVERSION = $(shell grep default_version $(EXTENSION).control | sed -e "s/default_version[[:space:]]*=[[:space:]]*'\([^']*\)'/\1/")
SED = sed
DATA = $(EXTENSION)--$(EXTVERSION).sql UPGRADABLE = \
0.0.1 \
$(END)
UPGRADES = \
$(shell echo $(UPGRADABLE) | \
$(SED) 's/^/$(EXTENSION)--/' | \
$(SED) 's/$$/--$(EXTVERSION).sql/' | \
$(SED) 's/ /--$(EXTVERSION).sql $(EXTENSION)--/g')
DATA = $(EXTENSION)--$(EXTVERSION).sql \
$(UPGRADES)
REGRESS = $(notdir $(basename $(wildcard sql/*test.sql))) REGRESS = $(notdir $(basename $(wildcard sql/*test.sql)))
@ -30,6 +42,9 @@ $(DATA): $(SOURCES_DATA)
rm -f $@ rm -f $@
cat $(SOURCES_DATA_DIR)/*.sql >> $@ cat $(SOURCES_DATA_DIR)/*.sql >> $@
$(EXTENSION)--%--$(EXTVERSION).sql: $(EXTENSION)--$(EXTVERSION).sql
cp $< $@
all: $(DATA) all: $(DATA)
# Only meant for development time, do not use once a version is released # Only meant for development time, do not use once a version is released