summaryrefslogtreecommitdiff
path: root/contrib/xml/Makefile
blob: b1f97242ad4b624563dd4542dae91322c2814f5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $PostgreSQL: pgsql/contrib/xml/Makefile,v 1.10.4.1 2008/05/08 17:12:08 tgl Exp $

MODULE_big = pgxml_dom
OBJS = pgxml_dom.o
SHLIB_LINK = -lxml2
DATA_built = pgxml_dom.sql
DOCS = README.xml

PG_CPPFLAGS := $(shell xml2-config --cflags)

ifdef USE_PGXS
PGXS = $(shell pg_config --pgxs)
include $(PGXS)
else
subdir = contrib/xml
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif