psql: Add missing punctuation in help output
[pgsql.git] / contrib / postgres_fdw / Makefile
blobc1b0cad453f25cf56c24b614ac2cb506791dd258
1 # contrib/postgres_fdw/Makefile
3 MODULE_big = postgres_fdw
4 OBJS = \
5 $(WIN32RES) \
6 connection.o \
7 deparse.o \
8 option.o \
9 postgres_fdw.o \
10 shippable.o
11 PGFILEDESC = "postgres_fdw - foreign data wrapper for PostgreSQL"
13 PG_CPPFLAGS = -I$(libpq_srcdir)
14 SHLIB_LINK_INTERNAL = $(libpq)
16 EXTENSION = postgres_fdw
17 DATA = postgres_fdw--1.0.sql postgres_fdw--1.0--1.1.sql
19 REGRESS = postgres_fdw
21 ifdef USE_PGXS
22 PG_CONFIG = pg_config
23 PGXS := $(shell $(PG_CONFIG) --pgxs)
24 include $(PGXS)
25 else
26 SHLIB_PREREQS = submake-libpq
27 subdir = contrib/postgres_fdw
28 top_builddir = ../..
29 include $(top_builddir)/src/Makefile.global
30 include $(top_srcdir)/contrib/contrib-global.mk
31 endif