-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAndroid.mk
More file actions
36 lines (24 loc) · 756 Bytes
/
Android.mk
File metadata and controls
36 lines (24 loc) · 756 Bytes
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
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
libLZF_SRC_FILES := \
lzf_c.c \
lzf_d.c
# Static library for host
# ========================================================
include $(CLEAR_VARS)
LOCAL_MODULE := liblzf
LOCAL_SRC_FILES := $(libLZF_SRC_FILES)
include $(BUILD_HOST_STATIC_LIBRARY)
# Static library for target
# ========================================================
include $(CLEAR_VARS)
LOCAL_MODULE := liblzf
LOCAL_SRC_FILES := $(libLZF_SRC_FILES)
include $(BUILD_STATIC_LIBRARY)
# JAR for host
# ========================================================
include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_MODULE := liblzf
LOCAL_MODULE_TAGS := optional
include $(BUILD_HOST_JAVA_LIBRARY)