blob: 9d2fd26068105b0fde6314252124fd01732c50c6 [file] [log] [blame]
Jiri Olsa16671c12015-04-18 22:34:39 +02001# Some of the tools (perf) use same make variables
2# as in kernel build.
3export srctree=
4export objtree=
5
Borislav Petkov2363ecb2012-04-11 18:36:16 +02006include scripts/Makefile.include
7
Borislav Petkovd5dd8af2012-04-11 18:36:17 +02008help:
9 @echo 'Possible targets:'
10 @echo ''
Josh Poimboeuf20a7add2015-12-18 06:39:15 -060011 @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'
Linus Walleij6d591c42015-10-21 15:45:54 +020016 @echo ' gpio - GPIO tools'
Josh Poimboeuf20a7add2015-12-18 06:39:15 -060017 @echo ' hv - tools used when in Hyper-V clients'
18 @echo ' iio - IIO tools'
Janosch Frankf9bc9e62016-05-18 13:26:21 +020019 @echo ' kvm_stat - top-like utility for displaying kvm statistics'
David Lechnerfa7f3242016-09-16 14:16:50 -050020 @echo ' leds - LEDs tools'
Alexander Sverdlin24b4d0a2017-05-25 12:58:44 +000021 @echo ' liblockdep - user-space wrapper for kernel locking-validator'
Josh Poimboeuf20a7add2015-12-18 06:39:15 -060022 @echo ' net - misc networking tools'
23 @echo ' perf - Linux performance measurement and analysis tool'
24 @echo ' selftests - various kernel selftests'
Linus Torvalds747a9b02016-01-14 11:39:09 -080025 @echo ' spi - spi tools'
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060026 @echo ' objtool - an ELF object analysis tool'
Josh Poimboeuf20a7add2015-12-18 06:39:15 -060027 @echo ' tmon - thermal monitoring and tuning tool'
28 @echo ' turbostat - Intel CPU idle stats and freq reporting tool'
29 @echo ' usb - USB testing tools'
30 @echo ' virtio - vhost test module'
31 @echo ' vm - misc vm tools'
Mario Limonciello9d64fc02017-11-01 14:25:37 -050032 @echo ' wmi - WMI interface examples'
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020033 @echo ' x86_energy_perf_policy - Intel energy policy tool'
34 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020035 @echo 'You can do:'
Borislav Petkov7e010562013-01-29 11:48:11 +010036 @echo ' $$ make -C tools/ <tool>_install'
Borislav Petkovea01fa92012-04-11 18:36:18 +020037 @echo ''
38 @echo ' from the kernel command line to build and install one of'
39 @echo ' the tools above'
40 @echo ''
Kamal Mostafaf6ba98c2015-11-11 14:25:34 -080041 @echo ' $$ make tools/all'
42 @echo ''
43 @echo ' builds all tools.'
44 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020045 @echo ' $$ make tools/install'
46 @echo ''
47 @echo ' installs all tools.'
48 @echo ''
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020049 @echo 'Cleaning targets:'
50 @echo ''
51 @echo ' all of the above with the "_clean" string appended cleans'
52 @echo ' the respective build directory.'
53 @echo ' clean: a summary clean target to clean _all_ folders'
54
Lv Zhenga0c4acc2014-01-15 12:04:17 +080055acpi: FORCE
56 $(call descend,power/$@)
57
Borislav Petkov2363ecb2012-04-11 18:36:16 +020058cpupower: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000059 $(call descend,power/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020060
Mario Limonciello9d64fc02017-11-01 14:25:37 -050061cgroup firewire hv guest spi usb virtio vm net iio gpio objtool leds wmi: FORCE
Borislav Petkov85c66be2013-02-20 16:32:30 +010062 $(call descend,$@)
63
S. Lockwood-Childs0041898e2014-05-08 13:34:01 -040064liblockdep: FORCE
65 $(call descend,lib/lockdep)
66
Jiri Olsa379a9a22015-04-18 22:34:38 +020067libapi: FORCE
Borislav Petkov553873e2013-12-09 17:14:23 +010068 $(call descend,lib/api)
Borislav Petkov85c66be2013-02-20 16:32:30 +010069
Jiri Olsa16671c12015-04-18 22:34:39 +020070# The perf build does not follow the descend function setup,
71# invoking it via it's own make rule.
72PERF_O = $(if $(O),$(O)/tools/perf,)
73
Jiri Olsa379a9a22015-04-18 22:34:38 +020074perf: FORCE
Jiri Olsa16671c12015-04-18 22:34:39 +020075 $(Q)mkdir -p $(PERF_O) .
76 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir=
Borislav Petkov2363ecb2012-04-11 18:36:16 +020077
78selftests: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000079 $(call descend,testing/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020080
81turbostat x86_energy_perf_policy: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000082 $(call descend,power/x86/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020083
Jacob Pan94f69962013-10-14 16:02:27 -070084tmon: FORCE
85 $(call descend,thermal/$@)
86
Pali Rohárb3fd7362015-06-06 15:42:28 +020087freefall: FORCE
88 $(call descend,laptop/$@)
89
Justin M. Forbesee5f7d72017-04-11 10:34:35 -050090kvm_stat: FORCE
91 $(call descend,kvm/$@)
92
Juergen Grossecda85e2017-08-16 19:31:57 +020093all: acpi cgroup cpupower gpio hv firewire liblockdep \
Andy Shevchenkoe9d46502017-07-26 12:59:30 +030094 perf selftests spi turbostat usb \
Kamal Mostafaf6ba98c2015-11-11 14:25:34 -080095 virtio vm net x86_energy_perf_policy \
Mario Limonciello9d64fc02017-11-01 14:25:37 -050096 tmon freefall iio objtool kvm_stat wmi
Kamal Mostafaf6ba98c2015-11-11 14:25:34 -080097
Lv Zhenga0c4acc2014-01-15 12:04:17 +080098acpi_install:
99 $(call descend,power/$(@:_install=),install)
100
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200101cpupower_install:
David Howellsca9dfc62012-11-05 15:15:24 +0000102 $(call descend,power/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200103
Mario Limonciello9d64fc02017-11-01 14:25:37 -0500104cgroup_install firewire_install gpio_install hv_install iio_install perf_install spi_install usb_install virtio_install vm_install net_install objtool_install wmi_install:
David Howellsca9dfc62012-11-05 15:15:24 +0000105 $(call descend,$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200106
Alexander Sverdlin24b4d0a2017-05-25 12:58:44 +0000107liblockdep_install:
108 $(call descend,lib/lockdep,install)
109
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200110selftests_install:
Kevin Hilman9a13c652015-11-17 13:54:19 -0800111 $(call descend,testing/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200112
113turbostat_install x86_energy_perf_policy_install:
David Howellsca9dfc62012-11-05 15:15:24 +0000114 $(call descend,power/x86/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200115
Jacob Pan94f69962013-10-14 16:02:27 -0700116tmon_install:
117 $(call descend,thermal/$(@:_install=),install)
118
Pali Rohárb3fd7362015-06-06 15:42:28 +0200119freefall_install:
120 $(call descend,laptop/$(@:_install=),install)
121
Janosch Frankf9bc9e62016-05-18 13:26:21 +0200122kvm_stat_install:
123 $(call descend,kvm/$(@:_install=),install)
124
Andy Shevchenko53499102016-06-19 23:41:12 +0300125install: acpi_install cgroup_install cpupower_install gpio_install \
Linus Torvaldsbf1d6b22017-09-05 10:36:26 -0700126 hv_install firewire_install iio_install liblockdep_install \
Greg Thelen92e015b2013-01-04 13:05:17 -0800127 perf_install selftests_install turbostat_install usb_install \
Jacob Pan94f69962013-10-14 16:02:27 -0700128 virtio_install vm_install net_install x86_energy_perf_policy_install \
Mario Limonciello9d64fc02017-11-01 14:25:37 -0500129 tmon_install freefall_install objtool_install kvm_stat_install \
130 wmi_install
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200131
Lv Zhenga0c4acc2014-01-15 12:04:17 +0800132acpi_clean:
133 $(call descend,power/acpi,clean)
134
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200135cpupower_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000136 $(call descend,power/cpupower,clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200137
Mario Limonciello9d64fc02017-11-01 14:25:37 -0500138cgroup_clean hv_clean firewire_clean spi_clean usb_clean virtio_clean vm_clean wmi_clean net_clean iio_clean gpio_clean objtool_clean leds_clean:
Borislav Petkov85c66be2013-02-20 16:32:30 +0100139 $(call descend,$(@:_clean=),clean)
140
S. Lockwood-Childs0041898e2014-05-08 13:34:01 -0400141liblockdep_clean:
142 $(call descend,lib/lockdep,clean)
143
Jiri Olsa379a9a22015-04-18 22:34:38 +0200144libapi_clean:
Borislav Petkov553873e2013-12-09 17:14:23 +0100145 $(call descend,lib/api,clean)
Borislav Petkov85c66be2013-02-20 16:32:30 +0100146
Jiri Olsa2f5a7f12016-01-11 11:54:48 +0100147libbpf_clean:
148 $(call descend,lib/bpf,clean)
149
150libsubcmd_clean:
151 $(call descend,lib/subcmd,clean)
152
Jiri Olsa379a9a22015-04-18 22:34:38 +0200153perf_clean:
Jiri Olsaab362f52016-04-25 22:17:18 +0200154 $(Q)mkdir -p $(PERF_O) .
155 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir= clean
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200156
157selftests_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000158 $(call descend,testing/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200159
160turbostat_clean x86_energy_perf_policy_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000161 $(call descend,power/x86/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200162
Jacob Pan94f69962013-10-14 16:02:27 -0700163tmon_clean:
164 $(call descend,thermal/tmon,clean)
165
Pali Rohárb3fd7362015-06-06 15:42:28 +0200166freefall_clean:
167 $(call descend,laptop/freefall,clean)
168
Jiri Olsa2f5a7f12016-01-11 11:54:48 +0100169build_clean:
170 $(call descend,build,clean)
171
Juergen Grossecda85e2017-08-16 19:31:57 +0200172clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean \
Joshua Clayton5eca4d82015-11-18 14:30:37 -0800173 perf_clean selftests_clean turbostat_clean spi_clean usb_clean virtio_clean \
Linus Torvalds23908db2015-06-26 15:46:08 -0700174 vm_clean net_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
Linus Walleij6d591c42015-10-21 15:45:54 +0200175 freefall_clean build_clean libbpf_clean libsubcmd_clean liblockdep_clean \
Mario Limonciello9d64fc02017-11-01 14:25:37 -0500176 gpio_clean objtool_clean leds_clean wmi_clean
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200177
178.PHONY: FORCE