blob: 00caacd3ed928c5156e3ba5c83640d8b1d9103ae [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'
Josh Poimboeuf20a7add2015-12-18 06:39:15 -060021 @echo ' lguest - a minimal 32-bit x86 hypervisor'
22 @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'
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020032 @echo ' x86_energy_perf_policy - Intel energy policy tool'
33 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020034 @echo 'You can do:'
Borislav Petkov7e010562013-01-29 11:48:11 +010035 @echo ' $$ make -C tools/ <tool>_install'
Borislav Petkovea01fa92012-04-11 18:36:18 +020036 @echo ''
37 @echo ' from the kernel command line to build and install one of'
38 @echo ' the tools above'
39 @echo ''
Kamal Mostafaf6ba98c2015-11-11 14:25:34 -080040 @echo ' $$ make tools/all'
41 @echo ''
42 @echo ' builds all tools.'
43 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020044 @echo ' $$ make tools/install'
45 @echo ''
46 @echo ' installs all tools.'
47 @echo ''
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020048 @echo 'Cleaning targets:'
49 @echo ''
50 @echo ' all of the above with the "_clean" string appended cleans'
51 @echo ' the respective build directory.'
52 @echo ' clean: a summary clean target to clean _all_ folders'
53
Lv Zhenga0c4acc2014-01-15 12:04:17 +080054acpi: FORCE
55 $(call descend,power/$@)
56
Borislav Petkov2363ecb2012-04-11 18:36:16 +020057cpupower: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000058 $(call descend,power/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020059
David Lechnerfa7f3242016-09-16 14:16:50 -050060cgroup firewire hv guest spi usb virtio vm net iio gpio objtool leds: FORCE
Borislav Petkov85c66be2013-02-20 16:32:30 +010061 $(call descend,$@)
62
S. Lockwood-Childs0041898e2014-05-08 13:34:01 -040063liblockdep: FORCE
64 $(call descend,lib/lockdep)
65
Jiri Olsa379a9a22015-04-18 22:34:38 +020066libapi: FORCE
Borislav Petkov553873e2013-12-09 17:14:23 +010067 $(call descend,lib/api)
Borislav Petkov85c66be2013-02-20 16:32:30 +010068
Jiri Olsa16671c12015-04-18 22:34:39 +020069# The perf build does not follow the descend function setup,
70# invoking it via it's own make rule.
71PERF_O = $(if $(O),$(O)/tools/perf,)
72
Jiri Olsa379a9a22015-04-18 22:34:38 +020073perf: FORCE
Jiri Olsa16671c12015-04-18 22:34:39 +020074 $(Q)mkdir -p $(PERF_O) .
75 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir=
Borislav Petkov2363ecb2012-04-11 18:36:16 +020076
77selftests: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000078 $(call descend,testing/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020079
80turbostat x86_energy_perf_policy: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000081 $(call descend,power/x86/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020082
Jacob Pan94f69962013-10-14 16:02:27 -070083tmon: FORCE
84 $(call descend,thermal/$@)
85
Pali Rohárb3fd7362015-06-06 15:42:28 +020086freefall: FORCE
87 $(call descend,laptop/$@)
88
Andy Shevchenko53499102016-06-19 23:41:12 +030089all: acpi cgroup cpupower gpio hv firewire lguest \
Kamal Mostafaf6ba98c2015-11-11 14:25:34 -080090 perf selftests turbostat usb \
91 virtio vm net x86_energy_perf_policy \
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060092 tmon freefall objtool
Kamal Mostafaf6ba98c2015-11-11 14:25:34 -080093
Lv Zhenga0c4acc2014-01-15 12:04:17 +080094acpi_install:
95 $(call descend,power/$(@:_install=),install)
96
Borislav Petkov2363ecb2012-04-11 18:36:16 +020097cpupower_install:
David Howellsca9dfc62012-11-05 15:15:24 +000098 $(call descend,power/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020099
Andy Shevchenko53499102016-06-19 23:41:12 +0300100cgroup_install firewire_install gpio_install hv_install lguest_install perf_install usb_install virtio_install vm_install net_install objtool_install:
David Howellsca9dfc62012-11-05 15:15:24 +0000101 $(call descend,$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200102
103selftests_install:
Kevin Hilman9a13c652015-11-17 13:54:19 -0800104 $(call descend,testing/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200105
106turbostat_install x86_energy_perf_policy_install:
David Howellsca9dfc62012-11-05 15:15:24 +0000107 $(call descend,power/x86/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200108
Jacob Pan94f69962013-10-14 16:02:27 -0700109tmon_install:
110 $(call descend,thermal/$(@:_install=),install)
111
Pali Rohárb3fd7362015-06-06 15:42:28 +0200112freefall_install:
113 $(call descend,laptop/$(@:_install=),install)
114
Janosch Frankf9bc9e62016-05-18 13:26:21 +0200115kvm_stat_install:
116 $(call descend,kvm/$(@:_install=),install)
117
Andy Shevchenko53499102016-06-19 23:41:12 +0300118install: acpi_install cgroup_install cpupower_install gpio_install \
119 hv_install firewire_install lguest_install \
Greg Thelen92e015b2013-01-04 13:05:17 -0800120 perf_install selftests_install turbostat_install usb_install \
Jacob Pan94f69962013-10-14 16:02:27 -0700121 virtio_install vm_install net_install x86_energy_perf_policy_install \
Janosch Frankf9bc9e62016-05-18 13:26:21 +0200122 tmon_install freefall_install objtool_install kvm_stat_install
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200123
Lv Zhenga0c4acc2014-01-15 12:04:17 +0800124acpi_clean:
125 $(call descend,power/acpi,clean)
126
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200127cpupower_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000128 $(call descend,power/cpupower,clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200129
David Lechnerfa7f3242016-09-16 14:16:50 -0500130cgroup_clean hv_clean firewire_clean lguest_clean spi_clean usb_clean virtio_clean vm_clean net_clean iio_clean gpio_clean objtool_clean leds_clean:
Borislav Petkov85c66be2013-02-20 16:32:30 +0100131 $(call descend,$(@:_clean=),clean)
132
S. Lockwood-Childs0041898e2014-05-08 13:34:01 -0400133liblockdep_clean:
134 $(call descend,lib/lockdep,clean)
135
Jiri Olsa379a9a22015-04-18 22:34:38 +0200136libapi_clean:
Borislav Petkov553873e2013-12-09 17:14:23 +0100137 $(call descend,lib/api,clean)
Borislav Petkov85c66be2013-02-20 16:32:30 +0100138
Jiri Olsa2f5a7f12016-01-11 11:54:48 +0100139libbpf_clean:
140 $(call descend,lib/bpf,clean)
141
142libsubcmd_clean:
143 $(call descend,lib/subcmd,clean)
144
Jiri Olsa379a9a22015-04-18 22:34:38 +0200145perf_clean:
Jiri Olsaab362f52016-04-25 22:17:18 +0200146 $(Q)mkdir -p $(PERF_O) .
147 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir= clean
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200148
149selftests_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000150 $(call descend,testing/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200151
152turbostat_clean x86_energy_perf_policy_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000153 $(call descend,power/x86/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200154
Jacob Pan94f69962013-10-14 16:02:27 -0700155tmon_clean:
156 $(call descend,thermal/tmon,clean)
157
Pali Rohárb3fd7362015-06-06 15:42:28 +0200158freefall_clean:
159 $(call descend,laptop/freefall,clean)
160
Jiri Olsa2f5a7f12016-01-11 11:54:48 +0100161build_clean:
162 $(call descend,build,clean)
163
Bjarke Istrup Pedersen3eb20942014-02-09 11:41:52 +0000164clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \
Joshua Clayton5eca4d82015-11-18 14:30:37 -0800165 perf_clean selftests_clean turbostat_clean spi_clean usb_clean virtio_clean \
Linus Torvalds23908db2015-06-26 15:46:08 -0700166 vm_clean net_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
Linus Walleij6d591c42015-10-21 15:45:54 +0200167 freefall_clean build_clean libbpf_clean libsubcmd_clean liblockdep_clean \
David Lechnerfa7f3242016-09-16 14:16:50 -0500168 gpio_clean objtool_clean leds_clean
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200169
170.PHONY: FORCE