have a primary key. Some of users want to use not-null unique keys rather than primary keys because postgres doesn't support REINDEX PRIMARY KEY CONCURRENTLY. - Support 9.1dev. - Improve Makefile to use PGXS automatically.
37 lines
862 B
Makefile
Executable File
37 lines
862 B
Makefile
Executable File
#
|
|
# pg_reorg: Makefile
|
|
#
|
|
# Copyright (c) 2008-2010, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
|
|
#
|
|
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
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = pg_reorg
|
|
include $(makefile_global)
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|
|
|
|
SUBDIRS = bin lib
|
|
|
|
all install installdirs uninstall distprep clean distclean maintainer-clean debug:
|
|
@for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir $@ || exit; \
|
|
done
|
|
|
|
# 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
|