mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2026-01-26 21:41:34 +03:00
- configure.in: 2.1.0 prerelease - example/Makefile.am example/gjobread.c tree.h: work on libxml1 libxml2 convergence. - nanoftp, nanohttp.c: fixed stalled connections probs - HTMLtree.c SAX.c : support for attribute without values in HTML for andersca - valid.c: Fixed most validation + namespace problems - HTMLparser.c: start document callback for andersca - debugXML.c xpath.c: lots of XPath fixups from Picdar Technology - parser.h, SAX.c: serious speed improvement for large CDATA blocks - encoding.[ch] xmlIO.[ch]: Improved seriously saving to different encoding - config.h.in parser.c xmllint.c: added xmlCheckVersion() and the LIBXML_TEST_VERSION macro Daniel
15 lines
282 B
Makefile
15 lines
282 B
Makefile
noinst_PROGRAMS = gjobread
|
|
|
|
INCLUDES = \
|
|
-I$(top_builddir) -I$(top_srcdir) \
|
|
-I@srcdir@
|
|
|
|
LDADD = $(top_builddir)/libxml.la @Z_LIBS@
|
|
|
|
$(srcdir)/libxml:
|
|
-$(RM) $(srcdir)/libxml
|
|
ln -s $(srcdir)/. $(srcdir)/libxml
|
|
|
|
$(top_builddir)/libxml.la: $(srcdir)/libxml
|
|
(cd .. ; $(MAKE))
|