forked from fenrus75/powertop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.mk
More file actions
70 lines (64 loc) · 1.68 KB
/
Android.mk
File metadata and controls
70 lines (64 loc) · 1.68 KB
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
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := debug
LOCAL_SHARED_LIBRARIES := libstlport \
libnl \
libpci \
LOCAL_MODULE := powertop
#LOCAL_CFLAGS += -Wall -O2 -g -fno-omit-frame-pointer -fstack-protector -Wshadow -Wformat -D_FORTIFY_SOURCE=2
#LOCAL_CPPFLAGS += -Wall -O2 -g -fno-omit-frame-pointer
LOCAL_CPPFLAGS += -DDISABLE_NCURSES -DDISABLE_I18N -DDISABLE_TRYCATCH
LOCAL_C_INCLUDES += external/stlport/stlport/ external/stlport/stlport/stl external/stlport/stlport/using/h/ bionic external/libnl/include/
LOCAL_SRC_FILES += \
parameters/parameters.cpp \
parameters/persistent.cpp \
parameters/learn.cpp \
process/powerconsumer.cpp \
process/work.cpp \
process/process.cpp \
process/timer.cpp \
process/device.cpp \
process/interrupt.cpp \
process/do_process.cpp \
cpu/intel_cpus.cpp \
cpu/cpu.cpp \
cpu/cpu_linux.cpp \
cpu/cpudevice.cpp \
cpu/cpu_core.cpp \
cpu/cpu_package.cpp \
cpu/abstract_cpu.cpp \
measurement/measurement.cpp \
measurement/acpi.cpp \
measurement/extech.cpp \
measurement/power_supply.cpp \
display.cpp \
html.cpp \
main.cpp \
tuning/tuning.cpp \
tuning/usb.cpp \
tuning/bluetooth.cpp \
tuning/ethernet.cpp \
tuning/runtime.cpp \
tuning/iw.c \
tuning/iw.h \
tuning/tunable.cpp \
tuning/sysfs.cpp \
tuning/cpufreq.cpp \
tuning/wifi.cpp \
perf/perf_bundle.cpp \
perf/perf.cpp \
devices/thinkpad-fan.cpp \
devices/alsa.cpp \
devices/runtime_pm.cpp \
devices/usb.cpp \
devices/ahci.cpp \
devices/rfkill.cpp \
devices/thinkpad-light.cpp \
devices/i915-gpu.cpp \
devices/backlight.cpp \
devices/network.cpp \
devices/device.cpp \
devlist.cpp \
calibrate/calibrate.cpp \
lib.cpp \
include $(BUILD_EXECUTABLE)