blob: 782d15df459d332b1480cda8731026d7438b8468 (
plain)
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
66
67
68
69
70
71
72
73
74
75
|
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_CFLAGS := \
-pedantic -Wall -Wextra -std=c99 -DSYSCONFDIR=\"/system/etc\"
LOCAL_C_INCLUDES := \
$(LOCAL_PATH) \
$(LOCAL_PATH)/linux \
external/libncurses/include
LOCAL_SRC_FILES := \
Action.c \
Affinity.c \
AffinityPanel.c \
AvailableColumnsPanel.c \
AvailableMetersPanel.c \
BatteryMeter.c \
CPUMeter.c \
CRT.c \
CategoriesPanel.c \
CheckItem.c \
ClockMeter.c \
ColorsPanel.c \
ColumnsPanel.c \
DisplayOptionsPanel.c \
EnvScreen.c \
FunctionBar.c \
Hashtable.c \
Header.c \
HostnameMeter.c \
IncSet.c \
InfoScreen.c \
ListItem.c \
LoadAverageMeter.c \
MainPanel.c \
MemoryMeter.c \
Meter.c \
MetersPanel.c \
Object.c \
OpenFilesScreen.c \
Panel.c \
Process.c \
ProcessList.c \
RichString.c \
ScreenManager.c \
Settings.c \
SignalsPanel.c \
StringUtils.c \
SwapMeter.c \
TasksMeter.c \
TraceScreen.c \
UptimeMeter.c \
UsersTable.c \
Vector.c \
XAlloc.c \
htop.c \
linux/Battery.c \
linux/IOPriority.c \
linux/IOPriorityPanel.c \
linux/LinuxCRT.c \
linux/LinuxProcess.c \
linux/LinuxProcessList.c \
linux/Platform.c
LOCAL_SHARED_LIBRARIES := libncurses
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE := htop
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
include $(BUILD_EXECUTABLE)
|