blob: abb358a70ad0bdb8af9d44a6e7a1dcb8906ed3c8 [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'
15 @echo ' firewire - the userspace part of nosy, an IEEE-1394 traffic sniffer'
16 @echo ' freefall - laptop accelerometer program for disk protection'
Linus Walleij6d591c42015-10-21 15:45:54 +020017 @echo ' gpio - GPIO tools'
Josh Poimboeuf20a7add2015-12-18 06:39:15 -060018 @echo ' hv - tools used when in Hyper-V clients'
19 @echo ' iio - IIO tools'
Janosch Frankf9bc9e62016-05-18 13:26:21 +020020 @echo ' kvm_stat - top-like utility for displaying kvm statistics'
David Lechnerfa7f3242016-09-16 14:16:50 -050021 @echo ' leds - LEDs tools'
Alexander Sverdlin24b4d0a2017-05-25 12:58:44 +000022 @echo ' liblockdep - user-space wrapper for kernel locking-validator'
Jakub Kicinskia92bb542017-10-04 20:10:03 -070023 @echo ' bpf - misc BPF tools'
Gustavo Pimentel1ce78ce2018-08-23 13:55:15 +020024 @echo ' pci - PCI tools'
Josh Poimboeuf20a7add2015-12-18 06:39:15 -060025 @echo ' perf - Linux performance measurement and analysis tool'
26 @echo ' selftests - various kernel selftests'
Linus Torvalds747a9b02016-01-14 11:39:09 -080027 @echo ' spi - spi tools'
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060028 @echo ' objtool - an ELF object analysis tool'
Josh Poimboeuf20a7add2015-12-18 06:39:15 -060029 @echo ' tmon - thermal monitoring and tuning tool'
30 @echo ' turbostat - Intel CPU idle stats and freq reporting tool'
31 @echo ' usb - USB testing tools'
32 @echo ' virtio - vhost test module'
33 @echo ' vm - misc vm tools'
Mario Limonciello9d64fc02017-11-01 14:25:37 -050034 @echo ' wmi - WMI interface examples'
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020035 @echo ' x86_energy_perf_policy - Intel energy policy tool'
36 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020037 @echo 'You can do:'
Borislav Petkov7e010562013-01-29 11:48:11 +010038 @echo ' $$ make -C tools/ <tool>_install'
Borislav Petkovea01fa92012-04-11 18:36:18 +020039 @echo ''
40 @echo ' from the kernel command line to build and install one of'
41 @echo ' the tools above'
42 @echo ''
Kamal Mostafaf6ba98c2015-11-11 14:25:34 -080043 @echo ' $$ make tools/all'
44 @echo ''
45 @echo ' builds all tools.'
46 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020047 @echo ' $$ make tools/install'
48 @echo ''
49 @echo ' installs all tools.'
50 @echo ''
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020051 @echo 'Cleaning targets:'
52 @echo ''
53 @echo ' all of the above with the "_clean" string appended cleans'
54 @echo ' the respective build directory.'
55 @echo ' clean: a summary clean target to clean _all_ folders'
56
Lv Zhenga0c4acc2014-01-15 12:04:17 +080057acpi: FORCE
58 $(call descend,power/$@)
59
Borislav Petkov2363ecb2012-04-11 18:36:16 +020060cpupower: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000061 $(call descend,power/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020062
Gustavo Pimentel1ce78ce2018-08-23 13:55:15 +020063cgroup firewire hv guest spi usb virtio vm bpf iio gpio objtool leds wmi pci: FORCE
Borislav Petkov85c66be2013-02-20 16:32:30 +010064 $(call descend,$@)
65
S. Lockwood-Childs0041898e2014-05-08 13:34:01 -040066liblockdep: FORCE
67 $(call descend,lib/lockdep)
68
Jiri Olsa379a9a22015-04-18 22:34:38 +020069libapi: FORCE
Borislav Petkov553873e2013-12-09 17:14:23 +010070 $(call descend,lib/api)
Borislav Petkov85c66be2013-02-20 16:32:30 +010071
Jiri Olsa16671c12015-04-18 22:34:39 +020072# The perf build does not follow the descend function setup,
73# invoking it via it's own make rule.
74PERF_O = $(if $(O),$(O)/tools/perf,)
75
Jiri Olsa379a9a22015-04-18 22:34:38 +020076perf: FORCE
Jiri Olsa16671c12015-04-18 22:34:39 +020077 $(Q)mkdir -p $(PERF_O) .
78 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir=
Borislav Petkov2363ecb2012-04-11 18:36:16 +020079
80selftests: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000081 $(call descend,testing/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020082
83turbostat x86_energy_perf_policy: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000084 $(call descend,power/x86/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020085
Jacob Pan94f69962013-10-14 16:02:27 -070086tmon: FORCE
87 $(call descend,thermal/$@)
88
Pali Rohárb3fd7362015-06-06 15:42:28 +020089freefall: FORCE
90 $(call descend,laptop/$@)
91
Justin M. Forbesee5f7d72017-04-11 10:34:35 -050092kvm_stat: FORCE
93 $(call descend,kvm/$@)
94
Juergen Grossecda85e2017-08-16 19:31:57 +020095all: acpi cgroup cpupower gpio hv firewire liblockdep \
Andy Shevchenkoe9d46502017-07-26 12:59:30 +030096 perf selftests spi turbostat usb \
Jakub Kicinskia92bb542017-10-04 20:10:03 -070097 virtio vm bpf x86_energy_perf_policy \
Gustavo Pimentel1ce78ce2018-08-23 13:55:15 +020098 tmon freefall iio objtool kvm_stat wmi pci
Kamal Mostafaf6ba98c2015-11-11 14:25:34 -080099
Lv Zhenga0c4acc2014-01-15 12:04:17 +0800100acpi_install:
101 $(call descend,power/$(@:_install=),install)
102
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200103cpupower_install:
David Howellsca9dfc62012-11-05 15:15:24 +0000104 $(call descend,power/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200105
Gustavo Pimentel1ce78ce2018-08-23 13:55:15 +0200106cgroup_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:
David Howellsca9dfc62012-11-05 15:15:24 +0000107 $(call descend,$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200108
Alexander Sverdlin24b4d0a2017-05-25 12:58:44 +0000109liblockdep_install:
110 $(call descend,lib/lockdep,install)
111
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200112selftests_install:
Kevin Hilman9a13c652015-11-17 13:54:19 -0800113 $(call descend,testing/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200114
115turbostat_install x86_energy_perf_policy_install:
David Howellsca9dfc62012-11-05 15:15:24 +0000116 $(call descend,power/x86/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200117
Jacob Pan94f69962013-10-14 16:02:27 -0700118tmon_install:
119 $(call descend,thermal/$(@:_install=),install)
120
Pali Rohárb3fd7362015-06-06 15:42:28 +0200121freefall_install:
122 $(call descend,laptop/$(@:_install=),install)
123
Janosch Frankf9bc9e62016-05-18 13:26:21 +0200124kvm_stat_install:
125 $(call descend,kvm/$(@:_install=),install)
126
Andy Shevchenko53499102016-06-19 23:41:12 +0300127install: acpi_install cgroup_install cpupower_install gpio_install \
Linus Torvaldsbf1d6b22017-09-05 10:36:26 -0700128 hv_install firewire_install iio_install liblockdep_install \
Greg Thelen92e015b12013-01-04 13:05:17 -0800129 perf_install selftests_install turbostat_install usb_install \
Jakub Kicinskia92bb542017-10-04 20:10:03 -0700130 virtio_install vm_install bpf_install x86_energy_perf_policy_install \
Mario Limonciello9d64fc02017-11-01 14:25:37 -0500131 tmon_install freefall_install objtool_install kvm_stat_install \
Gustavo Pimentel1ce78ce2018-08-23 13:55:15 +0200132 wmi_install pci_install
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200133
Lv Zhenga0c4acc2014-01-15 12:04:17 +0800134acpi_clean:
135 $(call descend,power/acpi,clean)
136
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200137cpupower_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000138 $(call descend,power/cpupower,clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200139
Gustavo Pimentel1ce78ce2018-08-23 13:55:15 +0200140cgroup_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:
Borislav Petkov85c66be2013-02-20 16:32:30 +0100141 $(call descend,$(@:_clean=),clean)
142
S. Lockwood-Childs0041898e2014-05-08 13:34:01 -0400143liblockdep_clean:
144 $(call descend,lib/lockdep,clean)
145
Jiri Olsa379a9a22015-04-18 22:34:38 +0200146libapi_clean:
Borislav Petkov553873e2013-12-09 17:14:23 +0100147 $(call descend,lib/api,clean)
Borislav Petkov85c66be2013-02-20 16:32:30 +0100148
Jiri Olsa2f5a7f12016-01-11 11:54:48 +0100149libbpf_clean:
150 $(call descend,lib/bpf,clean)
151
152libsubcmd_clean:
153 $(call descend,lib/subcmd,clean)
154
Jiri Olsa379a9a22015-04-18 22:34:38 +0200155perf_clean:
Jiri Olsaab362f52016-04-25 22:17:18 +0200156 $(Q)mkdir -p $(PERF_O) .
157 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir= clean
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200158
159selftests_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000160 $(call descend,testing/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200161
162turbostat_clean x86_energy_perf_policy_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000163 $(call descend,power/x86/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200164
Jacob Pan94f69962013-10-14 16:02:27 -0700165tmon_clean:
166 $(call descend,thermal/tmon,clean)
167
Pali Rohárb3fd7362015-06-06 15:42:28 +0200168freefall_clean:
169 $(call descend,laptop/freefall,clean)
170
Jiri Olsa2f5a7f12016-01-11 11:54:48 +0100171build_clean:
172 $(call descend,build,clean)
173
Juergen Grossecda85e2017-08-16 19:31:57 +0200174clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean \
Joshua Clayton5eca4d82015-11-18 14:30:37 -0800175 perf_clean selftests_clean turbostat_clean spi_clean usb_clean virtio_clean \
Jakub Kicinskia92bb542017-10-04 20:10:03 -0700176 vm_clean bpf_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
Linus Walleij6d591c42015-10-21 15:45:54 +0200177 freefall_clean build_clean libbpf_clean libsubcmd_clean liblockdep_clean \
Gustavo Pimentel1ce78ce2018-08-23 13:55:15 +0200178 gpio_clean objtool_clean leds_clean wmi_clean pci_clean
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200179
180.PHONY: FORCE