forked from gxk/ti-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.mk
More file actions
42 lines (33 loc) · 682 Bytes
/
Android.mk
File metadata and controls
42 lines (33 loc) · 682 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
37
38
39
40
41
42
LOCAL_PATH:= $(call my-dir)
#
# Calibrator
#
include $(CLEAR_VARS)
LOCAL_SRC_FILES := \
nvs.c \
misc_cmds.c \
calibrator.c \
plt.c \
ini.c
LOCAL_CFLAGS :=
LOCAL_C_INCLUDES := \
$(LOCAL_PATH) \
external/libnl/include
LOCAL_SHARED_LIBRARIES := libnl
LOCAL_MODULE_TAGS := eng
LOCAL_MODULE := calibrator
include $(BUILD_EXECUTABLE)
#
# UIM Application
#
#include $(CLEAR_VARS)
#LOCAL_C_INCLUDES:= \
# $(LOCAL_PATH)/uim_rfkill/ \
# external/bluetooth/bluez/
#LOCAL_SRC_FILES:= \
# uim_rfkill/uim.c
#LOCAL_CFLAGS:= -g -c -W -Wall -O2 -D_POSIX_SOURCE
#LOCAL_SHARED_LIBRARIES:= libnetutils
#LOCAL_MODULE_TAGS := eng
#LOCAL_MODULE:=uim-util
#include $(BUILD_EXECUTABLE)