]>
Commit | Line | Data |
---|---|---|
2363ecb1 BP |
1 | include scripts/Makefile.include |
2 | ||
d5dd8afb BP |
3 | help: |
4 | @echo 'Possible targets:' | |
5 | @echo '' | |
92e015b1 | 6 | @echo ' cgroup - cgroup tools' |
d5dd8afb BP |
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' | |
e306e2c1 | 15 | @echo ' net - misc networking tools' |
d5dd8afb BP |
16 | @echo ' vm - misc vm tools' |
17 | @echo ' x86_energy_perf_policy - Intel energy policy tool' | |
18 | @echo '' | |
ea01fa9f | 19 | @echo 'You can do:' |
7e010562 | 20 | @echo ' $$ make -C tools/ <tool>_install' |
ea01fa9f BP |
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/install' | |
26 | @echo '' | |
27 | @echo ' installs all tools.' | |
28 | @echo '' | |
d5dd8afb BP |
29 | @echo 'Cleaning targets:' |
30 | @echo '' | |
31 | @echo ' all of the above with the "_clean" string appended cleans' | |
32 | @echo ' the respective build directory.' | |
33 | @echo ' clean: a summary clean target to clean _all_ folders' | |
34 | ||
2363ecb1 | 35 | cpupower: FORCE |
ca9dfc6c | 36 | $(call descend,power/$@) |
2363ecb1 | 37 | |
73287a43 | 38 | cgroup firewire guest usb virtio vm net: FORCE |
85c66be1 BP |
39 | $(call descend,$@) |
40 | ||
41 | liblk: FORCE | |
42 | $(call descend,lib/lk) | |
43 | ||
44 | perf: liblk FORCE | |
ca9dfc6c | 45 | $(call descend,$@) |
2363ecb1 BP |
46 | |
47 | selftests: FORCE | |
ca9dfc6c | 48 | $(call descend,testing/$@) |
2363ecb1 BP |
49 | |
50 | turbostat x86_energy_perf_policy: FORCE | |
ca9dfc6c | 51 | $(call descend,power/x86/$@) |
2363ecb1 BP |
52 | |
53 | cpupower_install: | |
ca9dfc6c | 54 | $(call descend,power/$(@:_install=),install) |
2363ecb1 | 55 | |
e306e2c1 | 56 | cgroup_install firewire_install lguest_install perf_install usb_install virtio_install vm_install net_install: |
ca9dfc6c | 57 | $(call descend,$(@:_install=),install) |
2363ecb1 BP |
58 | |
59 | selftests_install: | |
ca9dfc6c | 60 | $(call descend,testing/$(@:_clean=),install) |
2363ecb1 BP |
61 | |
62 | turbostat_install x86_energy_perf_policy_install: | |
ca9dfc6c | 63 | $(call descend,power/x86/$(@:_install=),install) |
2363ecb1 | 64 | |
92e015b1 GT |
65 | install: cgroup_install cpupower_install firewire_install lguest_install \ |
66 | perf_install selftests_install turbostat_install usb_install \ | |
e306e2c1 | 67 | virtio_install vm_install net_install x86_energy_perf_policy_install |
2363ecb1 BP |
68 | |
69 | cpupower_clean: | |
ca9dfc6c | 70 | $(call descend,power/cpupower,clean) |
2363ecb1 | 71 | |
73287a43 | 72 | cgroup_clean firewire_clean lguest_clean usb_clean virtio_clean vm_clean net_clean: |
85c66be1 BP |
73 | $(call descend,$(@:_clean=),clean) |
74 | ||
75 | liblk_clean: | |
76 | $(call descend,lib/lk,clean) | |
77 | ||
78 | perf_clean: liblk_clean | |
ca9dfc6c | 79 | $(call descend,$(@:_clean=),clean) |
2363ecb1 BP |
80 | |
81 | selftests_clean: | |
ca9dfc6c | 82 | $(call descend,testing/$(@:_clean=),clean) |
2363ecb1 BP |
83 | |
84 | turbostat_clean x86_energy_perf_policy_clean: | |
ca9dfc6c | 85 | $(call descend,power/x86/$(@:_clean=),clean) |
2363ecb1 | 86 | |
92e015b1 GT |
87 | clean: cgroup_clean cpupower_clean firewire_clean lguest_clean perf_clean \ |
88 | selftests_clean turbostat_clean usb_clean virtio_clean \ | |
e306e2c1 | 89 | vm_clean net_clean x86_energy_perf_policy_clean |
2363ecb1 BP |
90 | |
91 | .PHONY: FORCE |