]> granicus.if.org Git - postgresql/blob - contrib/postgres_fdw/Makefile
Don't test xmin/xmax columns of a postgres_fdw foreign table.
[postgresql] / contrib / postgres_fdw / Makefile
1 # contrib/postgres_fdw/Makefile
2
3 MODULE_big = postgres_fdw
4 OBJS = postgres_fdw.o option.o deparse.o connection.o
5
6 PG_CPPFLAGS = -I$(libpq_srcdir)
7 SHLIB_LINK = $(libpq)
8 SHLIB_PREREQS = submake-libpq
9
10 EXTENSION = postgres_fdw
11 DATA = postgres_fdw--1.0.sql
12
13 REGRESS = postgres_fdw
14
15 # the db name is hard-coded in the tests
16 override USE_MODULE_DB =
17
18 ifdef USE_PGXS
19 PG_CONFIG = pg_config
20 PGXS := $(shell $(PG_CONFIG) --pgxs)
21 include $(PGXS)
22 else
23 subdir = contrib/postgres_fdw
24 top_builddir = ../..
25 include $(top_builddir)/src/Makefile.global
26 include $(top_srcdir)/contrib/contrib-global.mk
27 endif