2008-12-08 04:32:10 +00:00
|
|
|
#
|
|
|
|
# pg_reorg: lib/Makefile
|
|
|
|
#
|
2012-09-20 15:30:53 +00:00
|
|
|
# Portions Copyright (c) 2008-2012, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
|
2011-04-29 05:06:48 +00:00
|
|
|
# Portions Copyright (c) 2011, Itagaki Takahiro
|
2008-12-08 04:32:10 +00:00
|
|
|
#
|
|
|
|
MODULE_big = pg_reorg
|
2012-09-20 15:30:53 +00:00
|
|
|
OBJS = reorg.o pgut/pgut-be.o pgut/pgut-spi.o
|
|
|
|
|
|
|
|
EXTENSION = pg_reorg
|
|
|
|
|
|
|
|
#supports both EXTENSION (for >=9.1) and without_EXTENSION (for <PG 9.1)
|
2008-12-08 04:32:10 +00:00
|
|
|
DATA_built = pg_reorg.sql
|
2012-09-20 15:30:53 +00:00
|
|
|
DATA = pg_reorg--1.0.sql pg_reorg--unpackaged--1.0.sql uninstall_pg_reorg.sql
|
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
|
|
|
|
|
2008-12-08 04:32:10 +00:00
|
|
|
ifdef USE_PGXS
|
2011-01-06 09:35:15 +00:00
|
|
|
PG_CONFIG = pg_config
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
2008-12-08 04:32:10 +00:00
|
|
|
include $(PGXS)
|
|
|
|
else
|
2011-01-06 09:35:15 +00:00
|
|
|
subdir = contrib/$(MODULE_big)
|
|
|
|
include $(makefile_global)
|
2008-12-08 04:32:10 +00:00
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
|
|
endif
|
2010-06-01 07:35:01 +00:00
|
|
|
|
|
|
|
# remove dependency to libxml2 and libxslt
|
|
|
|
LIBS := $(filter-out -lxml2, $(LIBS))
|
|
|
|
LIBS := $(filter-out -lxslt, $(LIBS))
|