]> granicus.if.org Git - postgresql/blob - contrib/dblink/Makefile
Fix dblink_connect() so that it verifies that a password is supplied in the
[postgresql] / contrib / dblink / Makefile
1 # $PostgreSQL: pgsql/contrib/dblink/Makefile,v 1.15 2007/11/10 23:59:50 momjian Exp $
2
3 MODULE_big = dblink
4 PG_CPPFLAGS = -I$(libpq_srcdir)
5 OBJS    = dblink.o
6 SHLIB_LINK = $(libpq)
7
8 DATA_built = dblink.sql 
9 DATA = uninstall_dblink.sql 
10 REGRESS = dblink
11
12
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