mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2026-01-17 02:02:39 +03:00
* Makefile.am SAX2.c include/libxml/Makefile.am include/libxml/SAX2.h: Adding new version of the SAX interface, it's not there yet, currently just preparing the work * globals.c parser.c SAX.c include/libxml/SAX.h include/libxml/globals.h include/libxml/parser.h: doing some refactoring of the SAXv1 interfaces, obsoleting a bunch of them while keeping functionalities, preparing SAX2 integration. * dict.c: small cleanup. Daniel
50 lines
785 B
Makefile
50 lines
785 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
xmlincdir = $(includedir)/libxml2/libxml
|
|
|
|
xmlinc_HEADERS = \
|
|
SAX.h \
|
|
entities.h \
|
|
encoding.h \
|
|
parser.h \
|
|
parserInternals.h \
|
|
xmlerror.h \
|
|
HTMLparser.h \
|
|
HTMLtree.h \
|
|
debugXML.h \
|
|
tree.h \
|
|
list.h \
|
|
hash.h \
|
|
xpath.h \
|
|
xpathInternals.h \
|
|
xpointer.h \
|
|
xinclude.h \
|
|
xmlIO.h \
|
|
xmlmemory.h \
|
|
nanohttp.h \
|
|
nanoftp.h \
|
|
uri.h \
|
|
valid.h \
|
|
xlink.h \
|
|
xmlversion.h \
|
|
DOCBparser.h \
|
|
catalog.h \
|
|
threads.h \
|
|
globals.h \
|
|
c14n.h \
|
|
xmlautomata.h \
|
|
xmlregexp.h \
|
|
xmlschemas.h \
|
|
schemasInternals.h \
|
|
xmlschemastypes.h \
|
|
xmlunicode.h \
|
|
xmlreader.h \
|
|
relaxng.h \
|
|
dict.h \
|
|
SAX2.h
|
|
|
|
install-exec-hook:
|
|
$(mkinstalldirs) $(DESTDIR)$(xmlincdir)
|
|
|
|
EXTRA_DIST = xmlversion.h.in
|