pg_repack/lib/Makefile

50 lines
1.5 KiB
Makefile
Raw Normal View History

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
#
# Portions Copyright (c) 2008-2012, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
# Portions Copyright (c) 2011, Itagaki Takahiro
2015-01-11 19:01:37 -05:00
# Portions Copyright (c) 2012-2015, The Reorg Development Team
2008-12-08 04:32:10 +00:00
#
PG_CONFIG ?= pg_config
# version as a number, e.g. 9.1.4 -> 901
VERSION := $(shell $(PG_CONFIG) --version | sed 's/.* \([[:digit:].]\{1,\}\).*/\1/')
INTVERSION := $(shell echo $$(($$(echo $(VERSION).0 | sed 's/\([[:digit:]]\{1,\}\)\.\([[:digit:]]\{1,\}\).*/\1*100+\2/'))))
2012-11-10 22:33:57 +00:00
EXTENSION = pg_repack
MODULE_big = $(EXTENSION)
2017-04-10 11:58:41 +01:00
OBJS = repack.o pgut/pgut-spi.o
SHLIB_EXPORTS = exports.txt
# The version number of the program. It should be the same of the library.
REPACK_VERSION = $(shell grep '"version":' ../META.json | head -1 \
| sed -e 's/[ ]*"version":[ ]*"\(.*\)",/\1/')
PG_CPPFLAGS = -DREPACK_VERSION=$(REPACK_VERSION)
DATA_built = pg_repack--$(REPACK_VERSION).sql pg_repack.control
USE_PGXS = 1
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 on libxml2, libxslt, and libpam.
# XXX: find a better way to make sure we are linking with libraries
# from pg_config which we actually need.
LIBS := $(filter-out -lpam -lxml2 -lxslt, $(LIBS))
2012-11-10 22:33:57 +00:00
pg_repack.sql: pg_repack.sql.in
echo "BEGIN;" > $@; \
sed 's,MODULE_PATHNAME,$$libdir/$(MODULE_big),g' $< \
| sed 's,REPACK_VERSION,$(REPACK_VERSION),g' >> $@; \
echo "COMMIT;" >> $@;
pg_repack--$(REPACK_VERSION).sql: pg_repack.sql.in
sed 's,REPACK_VERSION,$(REPACK_VERSION),g' $< > $@;
pg_repack.control: pg_repack.control.in
sed 's,REPACK_VERSION,$(REPACK_VERSION),g' $< > $@