forked from json-c/json-c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroid.mk
49 lines (41 loc) · 811 Bytes
/
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
# This file is generated by androgenizer for:
# [x] NDK
# [ ] system
LOCAL_PATH:=$(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE:=libjson-c
LOCAL_MODULE_TAGS:=eng debug
LOCAL_SRC_FILES := \
arraylist.c \
debug.c \
json_c_version.c \
json_object.c \
json_object_iterator.c \
json_tokener.c \
json_util.c \
linkhash.c \
printbuf.c \
random_seed.c
LOCAL_C_INCLUDES := \
-DHAVE_CONFIG_H
LOCAL_PRELINK_MODULE := false
LOCAL_COPY_HEADERS_TO := json-c
LOCAL_COPY_HEADERS := \
arraylist.h \
bits.h \
debug.h \
json.h \
json_config.h \
json_c_version.h \
json_inttypes.h \
json_object.h \
json_object_iterator.h \
json_object_private.h \
json_tokener.h \
json_util.h \
linkhash.h \
printbuf.h \
random_seed.h
LOCAL_ARM_MODE:=arm
LOCAL_CFLAGS=-std=c99
include $(BUILD_SHARED_LIBRARY)