30 lines
810 B
Makefile
30 lines
810 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := xml2
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH) $(LOCAL_PATH)/include
|
|
LOCAL_CFLAGS := -Os
|
|
|
|
LOCAL_CPP_EXTENSION := .cpp
|
|
|
|
LOCAL_SRC_FILES := \
|
|
SAX.c entities.c encoding.c error.c \
|
|
parserInternals.c parser.c tree.c hash.c list.c xmlIO.c \
|
|
xmlmemory.c uri.c valid.c xlink.c HTMLparser.c HTMLtree.c \
|
|
debugXML.c xpath.c xpointer.c xinclude.c nanohttp.c nanoftp.c \
|
|
DOCBparser.c catalog.c globals.c threads.c c14n.c xmlstring.c \
|
|
xmlregexp.c xmlschemas.c xmlschemastypes.c xmlunicode.c \
|
|
xmlreader.c relaxng.c dict.c SAX2.c xmlwriter.c legacy.c \
|
|
chvalid.c pattern.c xmlsave.c xmlmodule.c schematron.c \
|
|
triostr.c trio.c trionan.c
|
|
|
|
|
|
LOCAL_SHARED_LIBRARIES :=
|
|
LOCAL_STATIC_LIBRARIES :=
|
|
LOCAL_LDLIBS := -lz -ldl
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|