mirror of
https://github.com/GNOME/libxml2.git
synced 2025-02-23 18:29:14 +08:00
* Makefile.am TODO_SCHEMAS configure.in genUnicode.py testAutomata.c testRegexp.c testSchemas.c xmlregexp.c xmlschemas.c xmlschemastypes.c xmlunicode.c include/libxml/Makefile.am include/libxml/schemasInternals.h include/libxml/xmlautomata.h include/libxml/xmlregexp.h include/libxml/xmlschemas.h include/libxml/xmlschemastypes.h include/libxml/xmlunicode.h include/libxml/xmlversion.h.in : merged the current state of XML Schemas implementation, it is not configured in by default, a specific --schemas configure option has been added. * test/automata test/regexp test/schemas Makefile.am result/automata result/regexp result/schemas: merged automata/regexp/schemas regression tests Daniel
47 lines
776 B
Makefile
47 lines
776 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 \
|
|
xmlwin32version.h \
|
|
DOCBparser.h \
|
|
catalog.h \
|
|
threads.h \
|
|
globals.h \
|
|
c14n.h \
|
|
xmlautomata.h \
|
|
xmlregexp.h \
|
|
xmlschemas.h \
|
|
schemasInternals.h \
|
|
xmlschemastypes.h \
|
|
xmlunicode.h
|
|
|
|
install-exec-hook:
|
|
$(mkinstalldirs) $(DESTDIR)$(xmlincdir)
|
|
|
|
EXTRA_DIST = xmlversion.h.in xmlwin32version.h.in
|