Fix UNLISTEN to fall out quickly if the current backend has never executed
[PostgreSQL.git] / contrib / dblink / Makefile
blob3f498a8e210ac4e8f49e6c5a1d989f33155f66ef
1 # $PostgreSQL$
3 MODULE_big = dblink
4 PG_CPPFLAGS = -I$(libpq_srcdir)
5 OBJS = dblink.o
6 SHLIB_LINK = $(libpq)
8 DATA_built = dblink.sql
9 DATA = uninstall_dblink.sql
10 REGRESS = dblink
13 ifdef USE_PGXS
14 PG_CONFIG = pg_config
15 PGXS := $(shell $(PG_CONFIG) --pgxs)
16 include $(PGXS)
17 else
18 subdir = contrib/dblink
19 top_builddir = ../..
20 include $(top_builddir)/src/Makefile.global
21 include $(top_srcdir)/contrib/contrib-global.mk
22 endif