mirror of https://github.com/postgres/postgres
17 lines
377 B
Makefile
17 lines
377 B
Makefile
# $PostgreSQL: pgsql/contrib/dblink/Makefile,v 1.8 2003/11/29 19:51:34 pgsql Exp $
|
|
|
|
subdir = contrib/dblink
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
MODULE_big = dblink
|
|
PG_CPPFLAGS = -I$(libpq_srcdir)
|
|
OBJS = dblink.o
|
|
SHLIB_LINK = $(libpq)
|
|
|
|
DATA_built = dblink.sql
|
|
DOCS = README.dblink
|
|
REGRESS = dblink
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|