1 include scripts/Makefile.include
4 @echo 'Possible targets:'
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'
18 @echo ' $$ make -C tools/<tool>_install'
20 @echo ' from the kernel command line to build and install one of'
21 @echo ' the tools above'
23 @echo ' $$ make tools/install'
25 @echo ' installs all tools.'
27 @echo 'Cleaning targets:'
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'
34 $(call descend,power/$@)
36 firewire lguest perf usb virtio vm: FORCE
40 $(call descend,testing/$@)
42 turbostat x86_energy_perf_policy: FORCE
43 $(call descend,power/x86/$@)
46 $(call descend,power/$(@:_install=),install)
48 firewire_install lguest_install perf_install usb_install virtio_install vm_install:
49 $(call descend,$(@:_install=),install)
52 $(call descend,testing/$(@:_clean=),install)
54 turbostat_install x86_energy_perf_policy_install:
55 $(call descend,power/x86/$(@:_install=),install)
57 install: 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
62 $(call descend,power/cpupower,clean)
64 firewire_clean lguest_clean perf_clean usb_clean virtio_clean vm_clean:
65 $(call descend,$(@:_clean=),clean)
68 $(call descend,testing/$(@:_clean=),clean)
70 turbostat_clean x86_energy_perf_policy_clean:
71 $(call descend,power/x86/$(@:_clean=),clean)
73 clean: 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