1include scripts/Makefile.include 2 3help: 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/install' 26 @echo '' 27 @echo ' installs all tools.' 28 @echo '' 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 35cpupower: FORCE 36 $(call descend,power/$@) 37 38cgroup firewire lguest perf usb virtio vm net: FORCE 39 $(call descend,$@) 40 41selftests: FORCE 42 $(call descend,testing/$@) 43 44turbostat x86_energy_perf_policy: FORCE 45 $(call descend,power/x86/$@) 46 47cpupower_install: 48 $(call descend,power/$(@:_install=),install) 49 50cgroup_install firewire_install lguest_install perf_install usb_install virtio_install vm_install net_install: 51 $(call descend,$(@:_install=),install) 52 53selftests_install: 54 $(call descend,testing/$(@:_clean=),install) 55 56turbostat_install x86_energy_perf_policy_install: 57 $(call descend,power/x86/$(@:_install=),install) 58 59install: cgroup_install cpupower_install firewire_install lguest_install \ 60 perf_install selftests_install turbostat_install usb_install \ 61 virtio_install vm_install net_install x86_energy_perf_policy_install 62 63cpupower_clean: 64 $(call descend,power/cpupower,clean) 65 66cgroup_clean firewire_clean lguest_clean perf_clean usb_clean virtio_clean vm_clean net_clean: 67 $(call descend,$(@:_clean=),clean) 68 69selftests_clean: 70 $(call descend,testing/$(@:_clean=),clean) 71 72turbostat_clean x86_energy_perf_policy_clean: 73 $(call descend,power/x86/$(@:_clean=),clean) 74 75clean: cgroup_clean cpupower_clean firewire_clean lguest_clean perf_clean \ 76 selftests_clean turbostat_clean usb_clean virtio_clean \ 77 vm_clean net_clean x86_energy_perf_policy_clean 78 79.PHONY: FORCE 80