forked from smihir/trace-cmd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.mk
More file actions
44 lines (37 loc) · 769 Bytes
/
Android.mk
File metadata and controls
44 lines (37 loc) · 769 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
43
44
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_ARM_MODE := arm
LOCAL_SRC_FILES := \
glob.c \
trace-cmd.c \
trace-read.c \
trace-split.c \
trace-listen.c \
trace-stack.c \
trace-hist.c \
trace-mem.c \
trace-snapshot.c \
trace-util.c \
trace-ftrace.c \
trace-seq.c \
trace-output.c \
event-parse.c \
trace-usage.c \
trace-input.c \
kbuffer-parse.c \
trace-recorder.c \
trace-restore.c \
parse-filter.c \
trace-record.c \
trace-blk-hack.c
LOCAL_C_INCLUDES := \
$(LOCAL_PATH)
# external/libnl-headers \
# external/openssl/include
L_CFLAGS += -D__ANDROID__
LOCAL_MODULE_TAGS := eng optional
#LOCAL_SHARED_LIBRARIES := libcrypto libnl_2
LOCAL_SHARED_LIBRARIES := \
libc libm libdl
LOCAL_MODULE := trace-cmd
include $(BUILD_EXECUTABLE)