1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
PG_CONFIG ?= pg_config
MODULE_big = pg_rewrite
OBJS = pg_rewrite.o concurrent.o $(WIN32RES)
PGFILEDESC = "pg_rewrite - tools for maintenance that requires table rewriting."
EXTENSION = pg_rewrite
DATA = pg_rewrite--1.0.sql pg_rewrite--1.0--1.1.sql pg_rewrite--1.1--1.2.sql\
pg_rewrite--1.2--2.0.sql pg_rewrite--1.3--2.0.sql
DOCS = pg_rewrite.md
REGRESS = pg_rewrite generated
#ISOLATION = pg_rewrite_concurrent pg_rewrite_concurrent_partition \
pg_rewrite_concurrent_toast
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
|