blob: 1f9a529fe544f768c4322e884e4c34d02d482b5e [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 ''
6 @echo ' cpupower - a tool for all things x86 CPU power'
7 @echo ' firewire - the userspace part of nosy, an IEEE-1394 traffic sniffer'
8 @echo ' lguest - a minimal 32-bit x86 hypervisor'
9 @echo ' perf - Linux performance measurement and analysis tool'
10 @echo ' selftests - various kernel selftests'
11 @echo ' turbostat - Intel CPU idle stats and freq reporting tool'
12 @echo ' usb - USB testing tools'
13 @echo ' virtio - vhost test module'
14 @echo ' vm - misc vm tools'
15 @echo ' x86_energy_perf_policy - Intel energy policy tool'
16 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020017 @echo 'You can do:'
18 @echo ' $$ make -C tools/<tool>_install'
19 @echo ''
20 @echo ' from the kernel command line to build and install one of'
21 @echo ' the tools above'
22 @echo ''
23 @echo ' $$ make tools/install'
24 @echo ''
25 @echo ' installs all tools.'
26 @echo ''
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020027 @echo 'Cleaning targets:'
28 @echo ''
29 @echo ' all of the above with the "_clean" string appended cleans'
30 @echo ' the respective build directory.'
31 @echo ' clean: a summary clean target to clean _all_ folders'
32
Borislav Petkov2363ecb2012-04-11 18:36:16 +020033cpupower: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000034 $(call descend,power/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020035
36firewire lguest perf usb virtio vm: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000037 $(call descend,$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020038
39selftests: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000040 $(call descend,testing/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020041
42turbostat x86_energy_perf_policy: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000043 $(call descend,power/x86/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020044
45cpupower_install:
David Howellsca9dfc62012-11-05 15:15:24 +000046 $(call descend,power/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020047
48firewire_install lguest_install perf_install usb_install virtio_install vm_install:
David Howellsca9dfc62012-11-05 15:15:24 +000049 $(call descend,$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020050
51selftests_install:
David Howellsca9dfc62012-11-05 15:15:24 +000052 $(call descend,testing/$(@:_clean=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020053
54turbostat_install x86_energy_perf_policy_install:
David Howellsca9dfc62012-11-05 15:15:24 +000055 $(call descend,power/x86/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020056
57install: cpupower_install firewire_install lguest_install perf_install \
58 selftests_install turbostat_install usb_install virtio_install \
59 vm_install x86_energy_perf_policy_install
60
61cpupower_clean:
David Howellsca9dfc62012-11-05 15:15:24 +000062 $(call descend,power/cpupower,clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020063
64firewire_clean lguest_clean perf_clean usb_clean virtio_clean vm_clean:
David Howellsca9dfc62012-11-05 15:15:24 +000065 $(call descend,$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020066
67selftests_clean:
David Howellsca9dfc62012-11-05 15:15:24 +000068 $(call descend,testing/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020069
70turbostat_clean x86_energy_perf_policy_clean:
David Howellsca9dfc62012-11-05 15:15:24 +000071 $(call descend,power/x86/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020072
73clean: cpupower_clean firewire_clean lguest_clean perf_clean selftests_clean \
74 turbostat_clean usb_clean virtio_clean vm_clean \
75 x86_energy_perf_policy_clean
76
77.PHONY: FORCE