2008-12-08 04:32:10 +00:00
|
|
|
#
|
2012-11-10 22:33:57 +00:00
|
|
|
# pg_repack: lib/Makefile
|
2008-12-08 04:32:10 +00:00
|
|
|
#
|
2012-09-20 15:30:53 +00:00
|
|
|
# Portions Copyright (c) 2008-2012, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
|
2011-04-29 05:06:48 +00:00
|
|
|
# Portions Copyright (c) 2011, Itagaki Takahiro
|
2012-11-11 03:00:00 +00:00
|
|
|
# Portions Copyright (c) 2012, The Reorg Development Team
|
2008-12-08 04:32:10 +00:00
|
|
|
#
|
2012-11-12 00:59:04 +00:00
|
|
|
|
2013-04-18 00:29:23 +01:00
|
|
|
PG_CONFIG ?= pg_config
|
|
|
|
|
2013-04-18 01:10:22 +01:00
|
|
|
# version as a number, e.g. 9.1.4 -> 901
|
2013-04-18 00:29:23 +01:00
|
|
|
VERSION := $(shell $(PG_CONFIG) --version | awk '{print $$2}')
|
2013-04-18 01:10:22 +01:00
|
|
|
INTVERSION := $(shell echo $$(($$(echo $(VERSION) | sed -E 's/([0-9]+)\.([0-9]+).*/\1*100+\2/'))))
|
2012-09-20 15:30:53 +00:00
|
|
|
|
2012-11-10 22:33:57 +00:00
|
|
|
EXTENSION = pg_repack
|
2012-11-12 00:59:04 +00:00
|
|
|
MODULE_big = $(EXTENSION)
|
|
|
|
|
|
|
|
OBJS = repack.o pgut/pgut-be.o pgut/pgut-spi.o
|
2012-09-20 15:30:53 +00:00
|
|
|
|
2012-11-11 18:30:27 +00:00
|
|
|
# The version number of the program. It should be the same of the library.
|
|
|
|
REPACK_VERSION = $(shell grep '"version":' ../META.json | head -1 \
|
2012-11-16 10:36:16 +00:00
|
|
|
| sed -e 's/[ ]*"version":[ ]*"\(.*\)",/\1/')
|
2012-11-11 18:30:27 +00:00
|
|
|
|
|
|
|
PG_CPPFLAGS = -DREPACK_VERSION=$(REPACK_VERSION)
|
|
|
|
|
2012-11-12 00:59:04 +00:00
|
|
|
# Support CREATE EXTENSION for PG >= 9.1 and a simple sql script for PG < 9.1
|
2013-04-18 01:10:22 +01:00
|
|
|
ifeq ($(shell echo $$(($(INTVERSION) >= 901))),1)
|
2012-11-15 23:31:58 +00:00
|
|
|
DATA_built = pg_repack--$(REPACK_VERSION).sql pg_repack.control
|
2012-11-12 00:59:04 +00:00
|
|
|
else
|
|
|
|
DATA_built = pg_repack.sql
|
2012-11-12 00:13:33 +00:00
|
|
|
DATA = uninstall_pg_repack.sql
|
2012-11-12 00:59:04 +00:00
|
|
|
endif
|
2012-11-10 16:08:19 +00:00
|
|
|
|
2012-11-15 23:37:09 +00:00
|
|
|
USE_PGXS = 1
|
2011-01-06 09:35:15 +00:00
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
2008-12-08 04:32:10 +00:00
|
|
|
include $(PGXS)
|
2010-06-01 07:35:01 +00:00
|
|
|
|
|
|
|
# remove dependency to libxml2 and libxslt
|
|
|
|
LIBS := $(filter-out -lxml2, $(LIBS))
|
|
|
|
LIBS := $(filter-out -lxslt, $(LIBS))
|
2012-11-10 13:49:48 +00:00
|
|
|
|
2012-11-10 22:33:57 +00:00
|
|
|
pg_repack.sql: pg_repack.sql.in
|
2012-11-10 13:49:48 +00:00
|
|
|
echo "BEGIN;\n" > $@; \
|
2012-11-15 23:37:09 +00:00
|
|
|
sed 's,MODULE_PATHNAME,$$libdir/$(MODULE_big),g' $< \
|
|
|
|
| sed 's,REPACK_VERSION,$(REPACK_VERSION),g' >> $@; \
|
2012-11-10 13:49:48 +00:00
|
|
|
echo "\nCOMMIT;" >> $@;
|
|
|
|
|
2012-11-15 23:31:58 +00:00
|
|
|
pg_repack--$(REPACK_VERSION).sql: pg_repack.sql.in
|
2012-11-15 23:37:09 +00:00
|
|
|
sed 's,REPACK_VERSION,$(REPACK_VERSION),g' $< > $@;
|
2012-11-15 23:31:58 +00:00
|
|
|
|
|
|
|
pg_repack.control: pg_repack.control.in
|
|
|
|
sed 's,REPACK_VERSION,$(REPACK_VERSION),g' $< > $@
|