1 # Some of the tools (perf) use same make variables
6 include scripts/Makefile.include
9 @echo 'Possible targets:'
11 @echo ' acpi - ACPI tools'
12 @echo ' cgroup - cgroup tools'
13 @echo ' cpupower - a tool for all things x86 CPU power'
14 @echo ' firewire - the userspace part of nosy, an IEEE-1394 traffic sniffer'
15 @echo ' freefall - laptop accelerometer program for disk protection'
16 @echo ' gpio - GPIO tools'
17 @echo ' hv - tools used when in Hyper-V clients'
18 @echo ' iio - IIO tools'
19 @echo ' kvm_stat - top-like utility for displaying kvm statistics'
20 @echo ' lguest - a minimal 32-bit x86 hypervisor'
21 @echo ' net - misc networking tools'
22 @echo ' perf - Linux performance measurement and analysis tool'
23 @echo ' selftests - various kernel selftests'
24 @echo ' spi - spi tools'
25 @echo ' objtool - an ELF object analysis tool'
26 @echo ' tmon - thermal monitoring and tuning tool'
27 @echo ' turbostat - Intel CPU idle stats and freq reporting tool'
28 @echo ' usb - USB testing tools'
29 @echo ' virtio - vhost test module'
30 @echo ' vm - misc vm tools'
31 @echo ' x86_energy_perf_policy - Intel energy policy tool'
34 @echo ' $$ make -C tools/ <tool>_install'
36 @echo ' from the kernel command line to build and install one of'
37 @echo ' the tools above'
39 @echo ' $$ make tools/all'
41 @echo ' builds all tools.'
43 @echo ' $$ make tools/install'
45 @echo ' installs all tools.'
47 @echo 'Cleaning targets:'
49 @echo ' all of the above with the "_clean" string appended cleans'
50 @echo ' the respective build directory.'
51 @echo ' clean: a summary clean target to clean _all_ folders'
54 $(call descend,power/$@)
57 $(call descend,power/$@)
59 cgroup firewire hv guest spi usb virtio vm net iio gpio objtool: FORCE
63 $(call descend,lib/lockdep)
66 $(call descend,lib/api)
68 # The perf build does not follow the descend function setup,
69 # invoking it via it's own make rule.
70 PERF_O = $(if $(O),$(O)/tools/perf,)
73 $(Q)mkdir -p $(PERF_O) .
74 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir=
77 $(call descend,testing/$@)
79 turbostat x86_energy_perf_policy: FORCE
80 $(call descend,power/x86/$@)
83 $(call descend,thermal/$@)
86 $(call descend,laptop/$@)
88 all: acpi cgroup cpupower gpio hv firewire lguest \
89 perf selftests turbostat usb \
90 virtio vm net x86_energy_perf_policy \
94 $(call descend,power/$(@:_install=),install)
97 $(call descend,power/$(@:_install=),install)
99 cgroup_install firewire_install gpio_install hv_install lguest_install perf_install usb_install virtio_install vm_install net_install objtool_install:
100 $(call descend,$(@:_install=),install)
103 $(call descend,testing/$(@:_install=),install)
105 turbostat_install x86_energy_perf_policy_install:
106 $(call descend,power/x86/$(@:_install=),install)
109 $(call descend,thermal/$(@:_install=),install)
112 $(call descend,laptop/$(@:_install=),install)
115 $(call descend,kvm/$(@:_install=),install)
117 install: acpi_install cgroup_install cpupower_install gpio_install \
118 hv_install firewire_install lguest_install \
119 perf_install selftests_install turbostat_install usb_install \
120 virtio_install vm_install net_install x86_energy_perf_policy_install \
121 tmon_install freefall_install objtool_install kvm_stat_install
124 $(call descend,power/acpi,clean)
127 $(call descend,power/cpupower,clean)
129 cgroup_clean hv_clean firewire_clean lguest_clean spi_clean usb_clean virtio_clean vm_clean net_clean iio_clean gpio_clean objtool_clean:
130 $(call descend,$(@:_clean=),clean)
133 $(call descend,lib/lockdep,clean)
136 $(call descend,lib/api,clean)
139 $(call descend,lib/bpf,clean)
142 $(call descend,lib/subcmd,clean)
145 $(Q)mkdir -p $(PERF_O) .
146 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir= clean
149 $(call descend,testing/$(@:_clean=),clean)
151 turbostat_clean x86_energy_perf_policy_clean:
152 $(call descend,power/x86/$(@:_clean=),clean)
155 $(call descend,thermal/tmon,clean)
158 $(call descend,laptop/freefall,clean)
161 $(call descend,build,clean)
163 clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \
164 perf_clean selftests_clean turbostat_clean spi_clean usb_clean virtio_clean \
165 vm_clean net_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
166 freefall_clean build_clean libbpf_clean libsubcmd_clean liblockdep_clean \
167 gpio_clean objtool_clean