blob: fa36565b209d80e8e07c14a6e48dd87a5d5d14de [file] [log] [blame]
Borislav Petkov2363ecb2012-04-11 18:36:16 +02001include scripts/Makefile.include
2
Borislav Petkovd5dd8af2012-04-11 18:36:17 +02003help:
4 @echo 'Possible targets:'
5 @echo ''
Greg Thelen92e015b12013-01-04 13:05:17 -08006 @echo ' cgroup - cgroup tools'
Borislav Petkovd5dd8af2012-04-11 18:36:17 +02007 @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 ' vm - misc vm tools'
16 @echo ' x86_energy_perf_policy - Intel energy policy tool'
17 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020018 @echo 'You can do:'
Borislav Petkov7e010562013-01-29 11:48:11 +010019 @echo ' $$ make -C tools/ <tool>_install'
Borislav Petkovea01fa92012-04-11 18:36:18 +020020 @echo ''
21 @echo ' from the kernel command line to build and install one of'
22 @echo ' the tools above'
23 @echo ''
24 @echo ' $$ make tools/install'
25 @echo ''
26 @echo ' installs all tools.'
27 @echo ''
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020028 @echo 'Cleaning targets:'
29 @echo ''
30 @echo ' all of the above with the "_clean" string appended cleans'
31 @echo ' the respective build directory.'
32 @echo ' clean: a summary clean target to clean _all_ folders'
33
Borislav Petkov2363ecb2012-04-11 18:36:16 +020034cpupower: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000035 $(call descend,power/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020036
Greg Thelen92e015b12013-01-04 13:05:17 -080037cgroup firewire lguest perf usb virtio vm: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000038 $(call descend,$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020039
40selftests: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000041 $(call descend,testing/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020042
43turbostat x86_energy_perf_policy: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000044 $(call descend,power/x86/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020045
46cpupower_install:
David Howellsca9dfc62012-11-05 15:15:24 +000047 $(call descend,power/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020048
Greg Thelen92e015b12013-01-04 13:05:17 -080049cgroup_install firewire_install lguest_install perf_install usb_install virtio_install vm_install:
David Howellsca9dfc62012-11-05 15:15:24 +000050 $(call descend,$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020051
52selftests_install:
David Howellsca9dfc62012-11-05 15:15:24 +000053 $(call descend,testing/$(@:_clean=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020054
55turbostat_install x86_energy_perf_policy_install:
David Howellsca9dfc62012-11-05 15:15:24 +000056 $(call descend,power/x86/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020057
Greg Thelen92e015b12013-01-04 13:05:17 -080058install: cgroup_install cpupower_install firewire_install lguest_install \
59 perf_install selftests_install turbostat_install usb_install \
60 virtio_install vm_install x86_energy_perf_policy_install
Borislav Petkov2363ecb2012-04-11 18:36:16 +020061
62cpupower_clean:
David Howellsca9dfc62012-11-05 15:15:24 +000063 $(call descend,power/cpupower,clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020064
Greg Thelen92e015b12013-01-04 13:05:17 -080065cgroup_clean firewire_clean lguest_clean perf_clean usb_clean virtio_clean vm_clean:
David Howellsca9dfc62012-11-05 15:15:24 +000066 $(call descend,$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020067
68selftests_clean:
David Howellsca9dfc62012-11-05 15:15:24 +000069 $(call descend,testing/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020070
71turbostat_clean x86_energy_perf_policy_clean:
David Howellsca9dfc62012-11-05 15:15:24 +000072 $(call descend,power/x86/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020073
Greg Thelen92e015b12013-01-04 13:05:17 -080074clean: cgroup_clean cpupower_clean firewire_clean lguest_clean perf_clean \
75 selftests_clean turbostat_clean usb_clean virtio_clean \
76 vm_clean x86_energy_perf_policy_clean
Borislav Petkov2363ecb2012-04-11 18:36:16 +020077
78.PHONY: FORCE