2007-11-11 07:59:52 +08:00
|
|
|
# $PostgreSQL: pgsql/contrib/xml2/Makefile,v 1.11 2007/11/10 23:59:52 momjian Exp $
|
2001-07-30 22:59:02 +08:00
|
|
|
|
2004-03-05 11:24:50 +08:00
|
|
|
MODULE_big = pgxml
|
|
|
|
|
|
|
|
# Remove xslt_proc.o from the following line if you don't have libxslt
|
|
|
|
OBJS = xpath.o xslt_proc.o
|
|
|
|
|
|
|
|
# Remove -lxslt from the following line if you don't have libxslt.
|
2006-03-10 23:39:42 +08:00
|
|
|
SHLIB_LINK = -lxslt -lxml2
|
2004-03-05 11:24:50 +08:00
|
|
|
|
|
|
|
DATA_built = pgxml.sql
|
2006-02-27 20:54:39 +08:00
|
|
|
DATA = uninstall_pgxml.sql
|
2001-08-21 08:39:20 +08:00
|
|
|
|
2004-11-04 14:09:26 +08:00
|
|
|
override CFLAGS += $(shell xml2-config --cflags)
|
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
|