1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-06 18:42:54 +03:00
Files
postgres/contrib/xml/Makefile
2008-05-08 17:12:08 +00:00

20 lines
447 B
Makefile

# $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