2010-03-02 02:07:59 +08:00
|
|
|
# $PostgreSQL: pgsql/contrib/xml2/Makefile,v 1.14 2010/03/01 18:07:59 tgl Exp $
|
2001-07-30 22:59:02 +08:00
|
|
|
|
2004-03-05 11:24:50 +08:00
|
|
|
MODULE_big = pgxml
|
|
|
|
|
2010-03-02 02:07:59 +08:00
|
|
|
OBJS = xpath.o xslt_proc.o
|
2004-03-05 11:24:50 +08:00
|
|
|
|
2008-05-09 00:49:37 +08:00
|
|
|
SHLIB_LINK += $(filter -lxslt, $(LIBS)) $(filter -lxml2, $(LIBS))
|
2004-03-05 11:24:50 +08:00
|
|
|
|
|
|
|
DATA_built = pgxml.sql
|
2006-02-27 20:54:39 +08:00
|
|
|
DATA = uninstall_pgxml.sql
|
2010-03-01 05:31:57 +08:00
|
|
|
REGRESS = xml2
|
2001-08-21 08:39:20 +08:00
|
|
|
|
2004-08-21 04:13:10 +08:00
|
|
|
ifdef USE_PGXS
|
2007-06-27 06:05:04 +08:00
|
|
|
PG_CONFIG = pg_config
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
2004-08-21 04:13:10 +08:00
|
|
|
include $(PGXS)
|
|
|
|
else
|
|
|
|
subdir = contrib/xml2
|
|
|
|
top_builddir = ../..
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
|
|
endif
|