pg_repack/bin/Makefile

40 lines
1.1 KiB
Makefile
Raw Normal View History

2008-12-08 04:32:10 +00:00
#
2012-11-10 22:33:57 +00:00
# pg_repack: bin/Makefile
2008-12-08 04:32:10 +00:00
#
# 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
2008-12-08 04:32:10 +00:00
#
PG_CONFIG ?= pg_config
2012-11-10 22:33:57 +00:00
SRCS = pg_repack.c pgut/pgut.c pgut/pgut-fe.c
2009-04-22 07:26:12 +00:00
OBJS = $(SRCS:.c=.o)
2012-11-10 22:33:57 +00:00
PROGRAM = pg_repack
2008-12-08 04:32:10 +00:00
# The version number of the program. It should be the same of the library.
REPACK_VERSION = $(shell grep '"version":' ../META.json | head -1 \
| sed -e 's/[ ]*"version":[ ]*"\(.*\)",/\1/')
PG_CPPFLAGS = -I$(libpq_srcdir) -DREPACK_VERSION=$(REPACK_VERSION)
ifdef DEBUG_REPACK
PG_CPPFLAGS += -DDEBUG_REPACK
2008-12-08 04:32:10 +00:00
endif
2008-12-08 04:32:10 +00:00
PG_LIBS = $(libpq)
# libs pgport, pgcommon moved somewhere else in some ubuntu version
# see ticket #179
PG_LIBS += -L$(shell $(PG_CONFIG) --pkglibdir)
USE_PGXS = 1 # use pgxs if not in contrib directory
PGXS := $(shell $(PG_CONFIG) --pgxs)
2008-12-08 04:32:10 +00:00
include $(PGXS)
2010-06-01 07:35:01 +00:00
# remove dependency on libxml2, libxslt, and libpam.
# XXX: find a better way to make sure we are linking with libraries
# from pg_config which we actually need.
LIBS := $(filter-out -ledit -lgssapi_krb5 -lpam -lselinux -lxml2 -lxslt, $(LIBS))