mirror of
https://github.com/GNOME/libxml2.git
synced 2025-05-08 21:07:54 +08:00

- Move Doxyfile into doc directory - Add files to EXTRA_DIST - Remove conversion script - Add docs to Meson summary
111 lines
5.7 KiB
Plaintext
111 lines
5.7 KiB
Plaintext
PROJECT_NAME = libxml2
|
|
OUTPUT_DIRECTORY = $(BUILD_ROOT)doc
|
|
STRIP_FROM_PATH = $(SOURCE_ROOT)include/libxml \
|
|
$(BUILD_ROOT)include/libxml
|
|
OPTIMIZE_OUTPUT_FOR_C = YES
|
|
EXTRACT_LOCAL_CLASSES = NO
|
|
HIDE_UNDOC_MEMBERS = YES
|
|
HIDE_UNDOC_CLASSES = YES
|
|
HIDE_SCOPE_NAMES = YES
|
|
SHOW_INCLUDE_FILES = NO
|
|
WARN_NO_PARAMDOC = YES
|
|
WARN_AS_ERROR = $(DOXYGEN_WARN_AS_ERROR)
|
|
INPUT = $(SOURCE_ROOT)doc/mainpage.md \
|
|
$(SOURCE_ROOT)include/libxml/c14n.h \
|
|
$(SOURCE_ROOT)include/libxml/catalog.h \
|
|
$(SOURCE_ROOT)include/libxml/chvalid.h \
|
|
$(SOURCE_ROOT)include/libxml/debugXML.h \
|
|
$(SOURCE_ROOT)include/libxml/dict.h \
|
|
$(SOURCE_ROOT)include/libxml/encoding.h \
|
|
$(SOURCE_ROOT)include/libxml/entities.h \
|
|
$(SOURCE_ROOT)include/libxml/hash.h \
|
|
$(SOURCE_ROOT)include/libxml/HTMLparser.h \
|
|
$(SOURCE_ROOT)include/libxml/HTMLtree.h \
|
|
$(SOURCE_ROOT)include/libxml/list.h \
|
|
$(SOURCE_ROOT)include/libxml/parser.h \
|
|
$(SOURCE_ROOT)include/libxml/parserInternals.h \
|
|
$(SOURCE_ROOT)include/libxml/pattern.h \
|
|
$(SOURCE_ROOT)include/libxml/relaxng.h \
|
|
$(SOURCE_ROOT)include/libxml/SAX2.h \
|
|
$(SOURCE_ROOT)include/libxml/schemasInternals.h \
|
|
$(SOURCE_ROOT)include/libxml/schematron.h \
|
|
$(SOURCE_ROOT)include/libxml/threads.h \
|
|
$(SOURCE_ROOT)include/libxml/tree.h \
|
|
$(SOURCE_ROOT)include/libxml/uri.h \
|
|
$(SOURCE_ROOT)include/libxml/valid.h \
|
|
$(SOURCE_ROOT)include/libxml/xinclude.h \
|
|
$(SOURCE_ROOT)include/libxml/xlink.h \
|
|
$(SOURCE_ROOT)include/libxml/xmlautomata.h \
|
|
$(SOURCE_ROOT)include/libxml/xmlerror.h \
|
|
$(SOURCE_ROOT)include/libxml/xmlIO.h \
|
|
$(SOURCE_ROOT)include/libxml/xmlmemory.h \
|
|
$(SOURCE_ROOT)include/libxml/xmlmodule.h \
|
|
$(SOURCE_ROOT)include/libxml/xmlreader.h \
|
|
$(SOURCE_ROOT)include/libxml/xmlregexp.h \
|
|
$(SOURCE_ROOT)include/libxml/xmlsave.h \
|
|
$(SOURCE_ROOT)include/libxml/xmlschemas.h \
|
|
$(SOURCE_ROOT)include/libxml/xmlschemastypes.h \
|
|
$(SOURCE_ROOT)include/libxml/xmlstring.h \
|
|
$(SOURCE_ROOT)include/libxml/xmlunicode.h \
|
|
$(BUILD_ROOT)include/libxml/xmlversion.h \
|
|
$(SOURCE_ROOT)include/libxml/xmlwriter.h \
|
|
$(SOURCE_ROOT)include/libxml/xpath.h \
|
|
$(SOURCE_ROOT)include/libxml/xpathInternals.h \
|
|
$(SOURCE_ROOT)include/libxml/xpointer.h \
|
|
$(SOURCE_ROOT)buf.c \
|
|
$(SOURCE_ROOT)c14n.c \
|
|
$(SOURCE_ROOT)catalog.c \
|
|
$(SOURCE_ROOT)chvalid.c \
|
|
$(SOURCE_ROOT)debugXML.c \
|
|
$(SOURCE_ROOT)dict.c \
|
|
$(SOURCE_ROOT)encoding.c \
|
|
$(SOURCE_ROOT)entities.c \
|
|
$(SOURCE_ROOT)error.c \
|
|
$(SOURCE_ROOT)globals.c \
|
|
$(SOURCE_ROOT)hash.c \
|
|
$(SOURCE_ROOT)HTMLparser.c \
|
|
$(SOURCE_ROOT)HTMLtree.c \
|
|
$(SOURCE_ROOT)list.c \
|
|
$(SOURCE_ROOT)parser.c \
|
|
$(SOURCE_ROOT)parserInternals.c \
|
|
$(SOURCE_ROOT)pattern.c \
|
|
$(SOURCE_ROOT)relaxng.c \
|
|
$(SOURCE_ROOT)SAX2.c \
|
|
$(SOURCE_ROOT)schematron.c \
|
|
$(SOURCE_ROOT)threads.c \
|
|
$(SOURCE_ROOT)tree.c \
|
|
$(SOURCE_ROOT)uri.c \
|
|
$(SOURCE_ROOT)valid.c \
|
|
$(SOURCE_ROOT)xinclude.c \
|
|
$(SOURCE_ROOT)xlink.c \
|
|
$(SOURCE_ROOT)xmlcatalog.c \
|
|
$(SOURCE_ROOT)xmlIO.c \
|
|
$(SOURCE_ROOT)xmlmemory.c \
|
|
$(SOURCE_ROOT)xmlmodule.c \
|
|
$(SOURCE_ROOT)xmlreader.c \
|
|
$(SOURCE_ROOT)xmlregexp.c \
|
|
$(SOURCE_ROOT)xmlsave.c \
|
|
$(SOURCE_ROOT)xmlschemas.c \
|
|
$(SOURCE_ROOT)xmlschemastypes.c \
|
|
$(SOURCE_ROOT)xmlstring.c \
|
|
$(SOURCE_ROOT)xmlwriter.c \
|
|
$(SOURCE_ROOT)xpath.c \
|
|
$(SOURCE_ROOT)xpointer.c
|
|
USE_MDFILE_AS_MAINPAGE = $(SOURCE_ROOT)doc/mainpage.md
|
|
EXCLUDE_SYMLINKS = YES
|
|
VERBATIM_HEADERS = NO
|
|
DISABLE_INDEX = NO
|
|
GENERATE_TREEVIEW = NO
|
|
HTML_EXTRA_STYLESHEET = $(SOURCE_ROOT)doc/libxml2.css
|
|
ENUM_VALUES_PER_LINE = 0
|
|
GENERATE_LATEX = NO
|
|
GENERATE_XML = YES
|
|
XML_PROGRAMLISTING = NO
|
|
MACRO_EXPANSION = YES
|
|
INCLUDE_PATH = $(SOURCE_ROOT). \
|
|
$(SOURCE_ROOT)include \
|
|
$(BUILD_ROOT). \
|
|
$(BUILD_ROOT)include
|
|
PREDEFINED = XML_TREE_INTERNALS
|
|
HAVE_DOT = NO
|