pg_repack/bin/Makefile

40 lines
921 B
Makefile
Raw Normal View History

2008-12-08 04:32:10 +00:00
#
# pg_reorg: bin/Makefile
#
# Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
# Portions Copyright (c) 2011, Itagaki Takahiro
2008-12-08 04:32:10 +00:00
#
SRCS = pg_reorg.c pgut/pgut.c pgut/pgut-fe.c
2009-04-22 07:26:12 +00:00
OBJS = $(SRCS:.c=.o)
2008-12-08 04:32:10 +00:00
PROGRAM = pg_reorg
REGRESS = init reorg
2008-12-08 04:32:10 +00:00
ifdef DEBUG_REORG
2009-04-22 07:26:12 +00:00
PG_CPPFLAGS = -I$(libpq_srcdir) -DDEBUG_REORG
2008-12-08 04:32:10 +00:00
else
2009-04-22 07:26:12 +00:00
PG_CPPFLAGS = -I$(libpq_srcdir)
2008-12-08 04:32:10 +00:00
endif
PG_LIBS = $(libpq)
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
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
2008-12-08 04:32:10 +00:00
include $(PGXS)
else
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))