2008-12-08 04:32:10 +00:00
|
|
|
#
|
2012-11-10 22:33:57 +00:00
|
|
|
# pg_repack: Makefile
|
2008-12-08 04:32:10 +00:00
|
|
|
#
|
2011-04-29 05:06:48 +00:00
|
|
|
# Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
|
|
|
|
# Portions Copyright (c) 2011, Itagaki Takahiro
|
2008-12-08 04:32:10 +00:00
|
|
|
#
|
2011-01-06 09:35:15 +00:00
|
|
|
ifndef USE_PGXS
|
|
|
|
top_builddir = ../..
|
|
|
|
makefile_global = $(top_builddir)/src/Makefile.global
|
|
|
|
ifeq "$(wildcard $(makefile_global))" ""
|
|
|
|
USE_PGXS = 1 # use pgxs if not in contrib directory
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2009-12-28 08:25:00 +00:00
|
|
|
ifdef USE_PGXS
|
|
|
|
PG_CONFIG = pg_config
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
|
|
include $(PGXS)
|
|
|
|
else
|
2012-11-10 22:33:57 +00:00
|
|
|
subdir = pg_repack
|
2011-01-06 09:35:15 +00:00
|
|
|
include $(makefile_global)
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
2009-12-28 08:25:00 +00:00
|
|
|
endif
|
2008-12-08 04:32:10 +00:00
|
|
|
|
2009-12-28 08:25:00 +00:00
|
|
|
SUBDIRS = bin lib
|
2008-12-08 04:32:10 +00:00
|
|
|
|
2012-10-17 08:00:47 -07:00
|
|
|
# Pull out the version number from pg_config
|
|
|
|
VERSION = $(shell $(PG_CONFIG) --version | awk '{print $$2}')
|
|
|
|
|
|
|
|
# We support PostgreSQL 8.3 and later.
|
|
|
|
ifneq ($(shell echo $(VERSION) | grep -E "^7\.|^8\.[012]"),)
|
2012-11-10 22:33:57 +00:00
|
|
|
$(error pg_repack requires PostgreSQL 8.3 or later. This is $(VERSION))
|
2012-10-17 08:00:47 -07:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
2009-12-28 08:25:00 +00:00
|
|
|
all install installdirs uninstall distprep clean distclean maintainer-clean debug:
|
|
|
|
@for dir in $(SUBDIRS); do \
|
|
|
|
$(MAKE) -C $$dir $@ || exit; \
|
|
|
|
done
|
2008-12-08 04:32:10 +00:00
|
|
|
|
2009-12-28 08:25:00 +00:00
|
|
|
# We'd like check operations to run all the subtests before failing.
|
|
|
|
check installcheck:
|
|
|
|
@CHECKERR=0; for dir in $(SUBDIRS); do \
|
|
|
|
$(MAKE) -C $$dir $@ || CHECKERR=$$?; \
|
|
|
|
done; \
|
|
|
|
exit $$CHECKERR
|