2013-05-09 21:15:48 -04:00
|
|
|
#
|
|
|
|
# pg_repack: regress/Makefile
|
|
|
|
#
|
|
|
|
# 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
|
2013-05-09 21:15:48 -04:00
|
|
|
#
|
|
|
|
|
|
|
|
PG_CONFIG ?= pg_config
|
|
|
|
|
|
|
|
# version as a number, e.g. 9.1.4 -> 901
|
|
|
|
VERSION := $(shell $(PG_CONFIG) --version | awk '{print $$2}')
|
2013-05-21 21:45:47 -04:00
|
|
|
INTVERSION := $(shell echo $$(($$(echo $(VERSION) | sed 's/\([[:digit:]]\{1,\}\)\.\([[:digit:]]\{1,\}\).*/\1*100+\2/' ))))
|
2013-05-09 21:15:48 -04:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Test suite
|
|
|
|
#
|
|
|
|
|
2017-03-29 03:30:03 +01:00
|
|
|
REGRESS := init-extension repack tablespace issue3
|
2013-05-09 21:15:48 -04:00
|
|
|
|
|
|
|
USE_PGXS = 1 # use pgxs if not in contrib directory
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
|
|
include $(PGXS)
|