pg_repack/lib/Makefile

21 lines
468 B
Makefile
Raw Normal View History

2008-12-08 04:32:10 +00:00
#
# pg_reorg: lib/Makefile
#
2010-01-28 06:02:28 +00:00
# Copyright (c) 2008-2010, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
2008-12-08 04:32:10 +00:00
#
SRCS = reorg.c pgut/pgut-be.c pgut/pgut-spi.c
2008-12-08 04:32:10 +00:00
OBJS = $(SRCS:.c=.o)
MODULE_big = pg_reorg
DATA_built = pg_reorg.sql
DATA = uninstall_pg_reorg.sql
ifdef USE_PGXS
PGXS := $(shell pg_config --pgxs)
include $(PGXS)
else
subdir = contrib/pg_reorg
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif