pg_repack/lib/Makefile

54 lines
1.6 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
# Portions Copyright (c) 2012, The Reorg Development Team
2008-12-08 04:32:10 +00:00
#
PG_CONFIG = pg_config
2012-11-10 22:33:57 +00:00
EXTENSION = pg_repack
MODULE_big = $(EXTENSION)
OBJS = repack.o pgut/pgut-be.o pgut/pgut-spi.o
# 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/\s*"version":\s*"\(.*\)",/\1/')
# The version of the extension, read from the .control file.
# Note that it doesn't need to be the same of the library version: it should
# be increased only when the sql changes.
EXTVER = $(shell grep -e '^default_version' $(EXTENSION).control \
| sed -e "s/[^']*'\([^']*\)'.*/\1/")
PG_CPPFLAGS = -DREPACK_VERSION=$(REPACK_VERSION)
# Support CREATE EXTENSION for PG >= 9.1 and a simple sql script for PG < 9.1
HAVE_EXTENSION = $(shell $(PG_CONFIG) --version \
| grep -qE " 8\.| 9\.0" && echo no || echo yes)
ifeq ($(HAVE_EXTENSION),yes)
DATA_built = pg_repack--$(EXTVER).sql
else
DATA_built = pg_repack.sql
DATA = uninstall_pg_repack.sql
endif
USE_PGXS = 1 # use pgxs if not in contrib directory
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 22:33:57 +00:00
pg_repack.sql: pg_repack.sql.in
echo "BEGIN;\n" > $@; \
sed 's,MODULE_PATHNAME,$$libdir/$(MODULE_big),g' $< >> $@; \
echo "\nCOMMIT;" >> $@;
2012-11-10 22:33:57 +00:00
pg_repack--$(EXTVER).sql: pg_repack.sql.in
cat $< > $@;