mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
604b831e1e
Fixes #1296
24 lines
820 B
Makefile
24 lines
820 B
Makefile
include $(REP_DIR)/lib/mk/virtualbox-common.inc
|
|
|
|
ZLIB_DIR = $(VIRTUALBOX_DIR)/src/libs/zlib-1.2.6
|
|
LIBXML_DIR = $(VIRTUALBOX_DIR)/src/libs/libxml2-2.6.31
|
|
|
|
INC_DIR += $(ZLIB_DIR)
|
|
INC_DIR += $(LIBXML_DIR)/include
|
|
INC_DIR += $(call select_from_ports,libiconv)/include/iconv
|
|
|
|
LIBS += stdcxx
|
|
|
|
VBOX_CC_OPT += -DLIBXML_THREAD_ENABLED
|
|
|
|
SRC_C += catalog.c chvalid.c debugXML.c dict.c encoding.c error.c entities.c
|
|
SRC_C += globals.c hash.c list.c parser.c parserInternals.c pattern.c
|
|
SRC_C += relaxng.c threads.c tree.c uri.c valid.c HTMLtree.c HTMLparser.c
|
|
SRC_C += SAX.c SAX2.c xmlIO.c xmlmemory.c xmlreader.c xmlregexp.c xmlschemas.c
|
|
SRC_C += xmlschemastypes.c xmlsave.c xmlstring.c xmlunicode.c xpath.c xpointer.c
|
|
|
|
SRC_CC += Runtime/r3/xml.cpp
|
|
SRC_CC += Runtime/common/string/ministring.cpp
|
|
|
|
vpath %.c $(LIBXML_DIR)
|