diff options
Diffstat (limited to 'contrib/xml2/Makefile')
-rw-r--r-- | contrib/xml2/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/contrib/xml2/Makefile b/contrib/xml2/Makefile new file mode 100644 index 0000000000..9177ca865c --- /dev/null +++ b/contrib/xml2/Makefile @@ -0,0 +1,18 @@ +# This makefile will build the new XML and XSLT routines. +subdir = contrib/xml +top_builddir = ../../ +include $(top_builddir)/src/Makefile.global + +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. +SHLIB_LINK = -lxml2 -lxslt + +DATA_built = pgxml.sql +DOCS = README.pgxml + +include $(top_builddir)contrib/contrib-global.mk + |