blob: c0d1e59f5abbfb259dce3015a61d7c1fc0ff6d41 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Jiri Olsa16671c12015-04-18 22:34:39 +02002# Some of the tools (perf) use same make variables
3# as in kernel build.
4export srctree=
5export objtree=
6
Borislav Petkov2363ecb2012-04-11 18:36:16 +02007include scripts/Makefile.include
8
Borislav Petkovd5dd8af2012-04-11 18:36:17 +02009help:
10 @echo 'Possible targets:'
11 @echo ''
Josh Poimboeuf20a7add2015-12-18 06:39:15 -060012 @echo ' acpi - ACPI tools'
13 @echo ' cgroup - cgroup tools'
14 @echo ' cpupower - a tool for all things x86 CPU power'
Thorsten Leemhuis4ab5a5d2019-01-08 20:40:06 +010015 @echo ' debugging - tools for debugging'
Josh Poimboeuf20a7add2015-12-18 06:39:15 -060016 @echo ' firewire - the userspace part of nosy, an IEEE-1394 traffic sniffer'
17 @echo ' freefall - laptop accelerometer program for disk protection'
Linus Walleij6d591c42015-10-21 15:45:54 +020018 @echo ' gpio - GPIO tools'
Josh Poimboeuf20a7add2015-12-18 06:39:15 -060019 @echo ' hv - tools used when in Hyper-V clients'
20 @echo ' iio - IIO tools'
Janosch Frankf9bc9e62016-05-18 13:26:21 +020021 @echo ' kvm_stat - top-like utility for displaying kvm statistics'
David Lechnerfa7f3242016-09-16 14:16:50 -050022 @echo ' leds - LEDs tools'
Alexander Sverdlin24b4d0a2017-05-25 12:58:44 +000023 @echo ' liblockdep - user-space wrapper for kernel locking-validator'
Jakub Kicinskia92bb542017-10-04 20:10:03 -070024 @echo ' bpf - misc BPF tools'
Gustavo Pimentel1ce78ce2018-08-23 13:55:15 +020025 @echo ' pci - PCI tools'
Josh Poimboeuf20a7add2015-12-18 06:39:15 -060026 @echo ' perf - Linux performance measurement and analysis tool'
27 @echo ' selftests - various kernel selftests'
Linus Torvalds747a9b02016-01-14 11:39:09 -080028 @echo ' spi - spi tools'
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060029 @echo ' objtool - an ELF object analysis tool'
Josh Poimboeuf20a7add2015-12-18 06:39:15 -060030 @echo ' tmon - thermal monitoring and tuning tool'
31 @echo ' turbostat - Intel CPU idle stats and freq reporting tool'
32 @echo ' usb - USB testing tools'
33 @echo ' virtio - vhost test module'
34 @echo ' vm - misc vm tools'
Mario Limonciello9d64fc02017-11-01 14:25:37 -050035 @echo ' wmi - WMI interface examples'
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020036 @echo ' x86_energy_perf_policy - Intel energy policy tool'
37 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020038 @echo 'You can do:'
Borislav Petkov7e010562013-01-29 11:48:11 +010039 @echo ' $$ make -C tools/ <tool>_install'
Borislav Petkovea01fa92012-04-11 18:36:18 +020040 @echo ''
41 @echo ' from the kernel command line to build and install one of'
42 @echo ' the tools above'
43 @echo ''
Kamal Mostafaf6ba98c2015-11-11 14:25:34 -080044 @echo ' $$ make tools/all'
45 @echo ''
46 @echo ' builds all tools.'
47 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020048 @echo ' $$ make tools/install'
49 @echo ''
50 @echo ' installs all tools.'
51 @echo ''
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020052 @echo 'Cleaning targets:'
53 @echo ''
54 @echo ' all of the above with the "_clean" string appended cleans'
55 @echo ' the respective build directory.'
56 @echo ' clean: a summary clean target to clean _all_ folders'
57
Lv Zhenga0c4acc2014-01-15 12:04:17 +080058acpi: FORCE
59 $(call descend,power/$@)
60
Borislav Petkov2363ecb2012-04-11 18:36:16 +020061cpupower: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000062 $(call descend,power/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020063
Thorsten Leemhuis4ab5a5d2019-01-08 20:40:06 +010064cgroup firewire hv guest spi usb virtio vm bpf iio gpio objtool leds wmi pci debugging: FORCE
Borislav Petkov85c66be2013-02-20 16:32:30 +010065 $(call descend,$@)
66
S. Lockwood-Childs0041898e2014-05-08 13:34:01 -040067liblockdep: FORCE
68 $(call descend,lib/lockdep)
69
Jiri Olsa379a9a22015-04-18 22:34:38 +020070libapi: FORCE
Borislav Petkov553873e2013-12-09 17:14:23 +010071 $(call descend,lib/api)
Borislav Petkov85c66be2013-02-20 16:32:30 +010072
Jiri Olsa16671c12015-04-18 22:34:39 +020073# The perf build does not follow the descend function setup,
74# invoking it via it's own make rule.
75PERF_O = $(if $(O),$(O)/tools/perf,)
76
Jiri Olsa379a9a22015-04-18 22:34:38 +020077perf: FORCE
Jiri Olsa16671c12015-04-18 22:34:39 +020078 $(Q)mkdir -p $(PERF_O) .
79 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir=
Borislav Petkov2363ecb2012-04-11 18:36:16 +020080
81selftests: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000082 $(call descend,testing/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020083
84turbostat x86_energy_perf_policy: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000085 $(call descend,power/x86/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020086
Jacob Pan94f69962013-10-14 16:02:27 -070087tmon: FORCE
88 $(call descend,thermal/$@)
89
Pali Rohárb3fd7362015-06-06 15:42:28 +020090freefall: FORCE
91 $(call descend,laptop/$@)
92
Justin M. Forbesee5f7d72017-04-11 10:34:35 -050093kvm_stat: FORCE
94 $(call descend,kvm/$@)
95
Juergen Grossecda85e2017-08-16 19:31:57 +020096all: acpi cgroup cpupower gpio hv firewire liblockdep \
Andy Shevchenkoe9d46502017-07-26 12:59:30 +030097 perf selftests spi turbostat usb \
Jakub Kicinskia92bb542017-10-04 20:10:03 -070098 virtio vm bpf x86_energy_perf_policy \
Thorsten Leemhuis4ab5a5d2019-01-08 20:40:06 +010099 tmon freefall iio objtool kvm_stat wmi \
100 pci debugging
Kamal Mostafaf6ba98c2015-11-11 14:25:34 -0800101
Lv Zhenga0c4acc2014-01-15 12:04:17 +0800102acpi_install:
103 $(call descend,power/$(@:_install=),install)
104
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200105cpupower_install:
David Howellsca9dfc62012-11-05 15:15:24 +0000106 $(call descend,power/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200107
Thorsten Leemhuis4ab5a5d2019-01-08 20:40:06 +0100108cgroup_install firewire_install gpio_install hv_install iio_install perf_install spi_install usb_install virtio_install vm_install bpf_install objtool_install wmi_install pci_install debugging_install:
David Howellsca9dfc62012-11-05 15:15:24 +0000109 $(call descend,$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200110
Alexander Sverdlin24b4d0a2017-05-25 12:58:44 +0000111liblockdep_install:
112 $(call descend,lib/lockdep,install)
113
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200114selftests_install:
Kevin Hilman9a13c652015-11-17 13:54:19 -0800115 $(call descend,testing/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200116
117turbostat_install x86_energy_perf_policy_install:
David Howellsca9dfc62012-11-05 15:15:24 +0000118 $(call descend,power/x86/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200119
Jacob Pan94f69962013-10-14 16:02:27 -0700120tmon_install:
121 $(call descend,thermal/$(@:_install=),install)
122
Pali Rohárb3fd7362015-06-06 15:42:28 +0200123freefall_install:
124 $(call descend,laptop/$(@:_install=),install)
125
Janosch Frankf9bc9e62016-05-18 13:26:21 +0200126kvm_stat_install:
127 $(call descend,kvm/$(@:_install=),install)
128
Andy Shevchenko53499102016-06-19 23:41:12 +0300129install: acpi_install cgroup_install cpupower_install gpio_install \
Linus Torvaldsbf1d6b22017-09-05 10:36:26 -0700130 hv_install firewire_install iio_install liblockdep_install \
Greg Thelen92e015b12013-01-04 13:05:17 -0800131 perf_install selftests_install turbostat_install usb_install \
Jakub Kicinskia92bb542017-10-04 20:10:03 -0700132 virtio_install vm_install bpf_install x86_energy_perf_policy_install \
Mario Limonciello9d64fc02017-11-01 14:25:37 -0500133 tmon_install freefall_install objtool_install kvm_stat_install \
Thorsten Leemhuis4ab5a5d2019-01-08 20:40:06 +0100134 wmi_install pci_install debugging_install
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200135
Lv Zhenga0c4acc2014-01-15 12:04:17 +0800136acpi_clean:
137 $(call descend,power/acpi,clean)
138
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200139cpupower_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000140 $(call descend,power/cpupower,clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200141
Thorsten Leemhuis4ab5a5d2019-01-08 20:40:06 +0100142cgroup_clean hv_clean firewire_clean spi_clean usb_clean virtio_clean vm_clean wmi_clean bpf_clean iio_clean gpio_clean objtool_clean leds_clean pci_clean debugging_clean:
Borislav Petkov85c66be2013-02-20 16:32:30 +0100143 $(call descend,$(@:_clean=),clean)
144
S. Lockwood-Childs0041898e2014-05-08 13:34:01 -0400145liblockdep_clean:
146 $(call descend,lib/lockdep,clean)
147
Jiri Olsa379a9a22015-04-18 22:34:38 +0200148libapi_clean:
Borislav Petkov553873e2013-12-09 17:14:23 +0100149 $(call descend,lib/api,clean)
Borislav Petkov85c66be2013-02-20 16:32:30 +0100150
Jiri Olsa2f5a7f12016-01-11 11:54:48 +0100151libbpf_clean:
152 $(call descend,lib/bpf,clean)
153
154libsubcmd_clean:
155 $(call descend,lib/subcmd,clean)
156
Jiri Olsa379a9a22015-04-18 22:34:38 +0200157perf_clean:
Jiri Olsaab362f52016-04-25 22:17:18 +0200158 $(Q)mkdir -p $(PERF_O) .
159 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir= clean
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200160
161selftests_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000162 $(call descend,testing/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200163
164turbostat_clean x86_energy_perf_policy_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000165 $(call descend,power/x86/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200166
Jacob Pan94f69962013-10-14 16:02:27 -0700167tmon_clean:
168 $(call descend,thermal/tmon,clean)
169
Pali Rohárb3fd7362015-06-06 15:42:28 +0200170freefall_clean:
171 $(call descend,laptop/freefall,clean)
172
Jiri Olsa2f5a7f12016-01-11 11:54:48 +0100173build_clean:
174 $(call descend,build,clean)
175
Juergen Grossecda85e2017-08-16 19:31:57 +0200176clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean \
Joshua Clayton5eca4d82015-11-18 14:30:37 -0800177 perf_clean selftests_clean turbostat_clean spi_clean usb_clean virtio_clean \
Jakub Kicinskia92bb542017-10-04 20:10:03 -0700178 vm_clean bpf_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
Linus Walleij6d591c42015-10-21 15:45:54 +0200179 freefall_clean build_clean libbpf_clean libsubcmd_clean liblockdep_clean \
Thorsten Leemhuis4ab5a5d2019-01-08 20:40:06 +0100180 gpio_clean objtool_clean leds_clean wmi_clean pci_clean debugging_clean
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200181
182.PHONY: FORCE