drivers: power: report battery voltage in AOSP compatible format
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / tools / Makefile
1 include scripts/Makefile.include
2
3 help:
4 @echo 'Possible targets:'
5 @echo ''
6 @echo ' cgroup - cgroup tools'
7 @echo ' cpupower - a tool for all things x86 CPU power'
8 @echo ' firewire - the userspace part of nosy, an IEEE-1394 traffic sniffer'
9 @echo ' lguest - a minimal 32-bit x86 hypervisor'
10 @echo ' perf - Linux performance measurement and analysis tool'
11 @echo ' selftests - various kernel selftests'
12 @echo ' turbostat - Intel CPU idle stats and freq reporting tool'
13 @echo ' usb - USB testing tools'
14 @echo ' virtio - vhost test module'
15 @echo ' net - misc networking tools'
16 @echo ' vm - misc vm tools'
17 @echo ' x86_energy_perf_policy - Intel energy policy tool'
18 @echo ''
19 @echo 'You can do:'
20 @echo ' $$ make -C tools/ <tool>_install'
21 @echo ''
22 @echo ' from the kernel command line to build and install one of'
23 @echo ' the tools above'
24 @echo ''
25 @echo ' $$ make tools/all'
26 @echo ''
27 @echo ' builds all tools.'
28 @echo ''
29 @echo ' $$ make tools/install'
30 @echo ''
31 @echo ' installs all tools.'
32 @echo ''
33 @echo 'Cleaning targets:'
34 @echo ''
35 @echo ' all of the above with the "_clean" string appended cleans'
36 @echo ' the respective build directory.'
37 @echo ' clean: a summary clean target to clean _all_ folders'
38
39 cpupower: FORCE
40 $(call descend,power/$@)
41
42 cgroup firewire guest usb virtio vm net: FORCE
43 $(call descend,$@)
44
45 liblk: FORCE
46 $(call descend,lib/lk)
47
48 perf: liblk FORCE
49 $(call descend,$@)
50
51 selftests: FORCE
52 $(call descend,testing/$@)
53
54 turbostat x86_energy_perf_policy: FORCE
55 $(call descend,power/x86/$@)
56
57 all: cgroup cpupower firewire lguest \
58 perf selftests turbostat usb \
59 virtio vm net x86_energy_perf_policy
60
61 cpupower_install:
62 $(call descend,power/$(@:_install=),install)
63
64 cgroup_install firewire_install lguest_install perf_install usb_install virtio_install vm_install net_install:
65 $(call descend,$(@:_install=),install)
66
67 selftests_install:
68 $(call descend,testing/$(@:_clean=),install)
69
70 turbostat_install x86_energy_perf_policy_install:
71 $(call descend,power/x86/$(@:_install=),install)
72
73 install: cgroup_install cpupower_install firewire_install lguest_install \
74 perf_install selftests_install turbostat_install usb_install \
75 virtio_install vm_install net_install x86_energy_perf_policy_install
76
77 cpupower_clean:
78 $(call descend,power/cpupower,clean)
79
80 cgroup_clean firewire_clean lguest_clean usb_clean virtio_clean vm_clean net_clean:
81 $(call descend,$(@:_clean=),clean)
82
83 liblk_clean:
84 $(call descend,lib/lk,clean)
85
86 perf_clean: liblk_clean
87 $(call descend,$(@:_clean=),clean)
88
89 selftests_clean:
90 $(call descend,testing/$(@:_clean=),clean)
91
92 turbostat_clean x86_energy_perf_policy_clean:
93 $(call descend,power/x86/$(@:_clean=),clean)
94
95 clean: cgroup_clean cpupower_clean firewire_clean lguest_clean perf_clean \
96 selftests_clean turbostat_clean usb_clean virtio_clean \
97 vm_clean net_clean x86_energy_perf_policy_clean
98
99 .PHONY: FORCE