-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroid.mk
executable file
·65 lines (56 loc) · 1 KB
/
Android.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
LOCAL_PATH := $(call my-dir)
# common_SRC_FILES := $(notdir $(wildcard $(LOCAL_PATH)/*.c))
# Ignore test files
common_SRC_FILES := \
buf.c \
c14n.c \
catalog.c \
chvalid.c \
debugXML.c \
dict.c \
DOCBparser.c \
encoding.c \
entities.c \
error.c \
globals.c \
hash.c \
HTMLparser.c \
HTMLtree.c \
legacy.c \
list.c \
nanoftp.c \
nanohttp.c \
parser.c \
parserInternals.c \
pattern.c \
relaxng.c \
SAX.c \
SAX2.c \
schematron.c \
threads.c \
tree.c \
uri.c \
valid.c \
xinclude.c \
xlink.c \
xmlIO.c \
xmlmemory.c \
xmlmodule.c \
xmlreader.c \
xmlregexp.c \
xmlsave.c \
xmlschemas.c \
xmlschemastypes.c \
xmlstring.c \
xmlunicode.c \
xmlwriter.c \
xpath.c \
xpointer.c
common_C_INCLUDES += $(LOCAL_PATH)/include
include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(common_SRC_FILES)
LOCAL_C_INCLUDES += $(common_C_INCLUDES)
LOCAL_SHARED_LIBRARIES += $(common_SHARED_LIBRARIES)
LOCAL_CFLAGS += -fvisibility=hidden -I$(LOCAL_C_INCLUDES)
LOCAL_MODULE:= xml2
include $(BUILD_STATIC_LIBRARY)