blob: 6bf68fe7dd290dfeb9f51969f6b0d6d0cb38ab4c [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'
19 @echo ' lguest - a minimal 32-bit x86 hypervisor'
20 @echo ' net - misc networking tools'
21 @echo ' perf - Linux performance measurement and analysis tool'
22 @echo ' selftests - various kernel selftests'
Linus Torvalds747a9b02016-01-14 11:39:09 -080023 @echo ' spi - spi tools'
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060024 @echo ' objtool - an ELF object analysis tool'
Josh Poimboeuf20a7add2015-12-18 06:39:15 -060025 @echo ' tmon - thermal monitoring and tuning tool'
26 @echo ' turbostat - Intel CPU idle stats and freq reporting tool'
27 @echo ' usb - USB testing tools'
28 @echo ' virtio - vhost test module'
29 @echo ' vm - misc vm tools'
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020030 @echo ' x86_energy_perf_policy - Intel energy policy tool'
31 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020032 @echo 'You can do:'
Borislav Petkov7e010562013-01-29 11:48:11 +010033 @echo ' $$ make -C tools/ <tool>_install'
Borislav Petkovea01fa92012-04-11 18:36:18 +020034 @echo ''
35 @echo ' from the kernel command line to build and install one of'
36 @echo ' the tools above'
37 @echo ''
Kamal Mostafaf6ba98c2015-11-11 14:25:34 -080038 @echo ' $$ make tools/all'
39 @echo ''
40 @echo ' builds all tools.'
41 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020042 @echo ' $$ make tools/install'
43 @echo ''
44 @echo ' installs all tools.'
45 @echo ''
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020046 @echo 'Cleaning targets:'
47 @echo ''
48 @echo ' all of the above with the "_clean" string appended cleans'
49 @echo ' the respective build directory.'
50 @echo ' clean: a summary clean target to clean _all_ folders'
51
Lv Zhenga0c4acc2014-01-15 12:04:17 +080052acpi: FORCE
53 $(call descend,power/$@)
54
Borislav Petkov2363ecb2012-04-11 18:36:16 +020055cpupower: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000056 $(call descend,power/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020057
Linus Torvalds26660a42016-03-20 18:23:21 -070058cgroup firewire hv guest spi usb virtio vm net iio gpio objtool: FORCE
Borislav Petkov85c66be2013-02-20 16:32:30 +010059 $(call descend,$@)
60
S. Lockwood-Childs0041898e2014-05-08 13:34:01 -040061liblockdep: FORCE
62 $(call descend,lib/lockdep)
63
Jiri Olsa379a9a22015-04-18 22:34:38 +020064libapi: FORCE
Borislav Petkov553873e2013-12-09 17:14:23 +010065 $(call descend,lib/api)
Borislav Petkov85c66be2013-02-20 16:32:30 +010066
Jiri Olsa16671c12015-04-18 22:34:39 +020067# The perf build does not follow the descend function setup,
68# invoking it via it's own make rule.
69PERF_O = $(if $(O),$(O)/tools/perf,)
70
Jiri Olsa379a9a22015-04-18 22:34:38 +020071perf: FORCE
Jiri Olsa16671c12015-04-18 22:34:39 +020072 $(Q)mkdir -p $(PERF_O) .
73 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir=
Borislav Petkov2363ecb2012-04-11 18:36:16 +020074
75selftests: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000076 $(call descend,testing/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020077
78turbostat x86_energy_perf_policy: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000079 $(call descend,power/x86/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020080
Jacob Pan94f69962013-10-14 16:02:27 -070081tmon: FORCE
82 $(call descend,thermal/$@)
83
Pali Rohárb3fd7362015-06-06 15:42:28 +020084freefall: FORCE
85 $(call descend,laptop/$@)
86
Kamal Mostafaf6ba98c2015-11-11 14:25:34 -080087all: acpi cgroup cpupower hv firewire lguest \
88 perf selftests turbostat usb \
89 virtio vm net x86_energy_perf_policy \
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060090 tmon freefall objtool
Kamal Mostafaf6ba98c2015-11-11 14:25:34 -080091
Lv Zhenga0c4acc2014-01-15 12:04:17 +080092acpi_install:
93 $(call descend,power/$(@:_install=),install)
94
Borislav Petkov2363ecb2012-04-11 18:36:16 +020095cpupower_install:
David Howellsca9dfc62012-11-05 15:15:24 +000096 $(call descend,power/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020097
Josh Poimboeuf442f04c2016-02-28 22:22:41 -060098cgroup_install firewire_install hv_install lguest_install perf_install usb_install virtio_install vm_install net_install objtool_install:
David Howellsca9dfc62012-11-05 15:15:24 +000099 $(call descend,$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200100
101selftests_install:
Kevin Hilman9a13c652015-11-17 13:54:19 -0800102 $(call descend,testing/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200103
104turbostat_install x86_energy_perf_policy_install:
David Howellsca9dfc62012-11-05 15:15:24 +0000105 $(call descend,power/x86/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200106
Jacob Pan94f69962013-10-14 16:02:27 -0700107tmon_install:
108 $(call descend,thermal/$(@:_install=),install)
109
Pali Rohárb3fd7362015-06-06 15:42:28 +0200110freefall_install:
111 $(call descend,laptop/$(@:_install=),install)
112
Bjarke Istrup Pedersen3eb20942014-02-09 11:41:52 +0000113install: acpi_install cgroup_install cpupower_install hv_install firewire_install lguest_install \
Greg Thelen92e015b12013-01-04 13:05:17 -0800114 perf_install selftests_install turbostat_install usb_install \
Jacob Pan94f69962013-10-14 16:02:27 -0700115 virtio_install vm_install net_install x86_energy_perf_policy_install \
Josh Poimboeuf442f04c2016-02-28 22:22:41 -0600116 tmon_install freefall_install objtool_install
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200117
Lv Zhenga0c4acc2014-01-15 12:04:17 +0800118acpi_clean:
119 $(call descend,power/acpi,clean)
120
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200121cpupower_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000122 $(call descend,power/cpupower,clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200123
Linus Torvalds26660a42016-03-20 18:23:21 -0700124cgroup_clean hv_clean firewire_clean lguest_clean spi_clean usb_clean virtio_clean vm_clean net_clean iio_clean gpio_clean objtool_clean:
Borislav Petkov85c66be2013-02-20 16:32:30 +0100125 $(call descend,$(@:_clean=),clean)
126
S. Lockwood-Childs0041898e2014-05-08 13:34:01 -0400127liblockdep_clean:
128 $(call descend,lib/lockdep,clean)
129
Jiri Olsa379a9a22015-04-18 22:34:38 +0200130libapi_clean:
Borislav Petkov553873e2013-12-09 17:14:23 +0100131 $(call descend,lib/api,clean)
Borislav Petkov85c66be2013-02-20 16:32:30 +0100132
Jiri Olsa2f5a7f12016-01-11 11:54:48 +0100133libbpf_clean:
134 $(call descend,lib/bpf,clean)
135
136libsubcmd_clean:
137 $(call descend,lib/subcmd,clean)
138
Jiri Olsa379a9a22015-04-18 22:34:38 +0200139perf_clean:
Jiri Olsaab362f52016-04-25 22:17:18 +0200140 $(Q)mkdir -p $(PERF_O) .
141 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir= clean
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200142
143selftests_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000144 $(call descend,testing/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200145
146turbostat_clean x86_energy_perf_policy_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000147 $(call descend,power/x86/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200148
Jacob Pan94f69962013-10-14 16:02:27 -0700149tmon_clean:
150 $(call descend,thermal/tmon,clean)
151
Pali Rohárb3fd7362015-06-06 15:42:28 +0200152freefall_clean:
153 $(call descend,laptop/freefall,clean)
154
Jiri Olsa2f5a7f12016-01-11 11:54:48 +0100155build_clean:
156 $(call descend,build,clean)
157
Bjarke Istrup Pedersen3eb20942014-02-09 11:41:52 +0000158clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \
Joshua Clayton5eca4d82015-11-18 14:30:37 -0800159 perf_clean selftests_clean turbostat_clean spi_clean usb_clean virtio_clean \
Linus Torvalds23908db2015-06-26 15:46:08 -0700160 vm_clean net_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
Linus Walleij6d591c42015-10-21 15:45:54 +0200161 freefall_clean build_clean libbpf_clean libsubcmd_clean liblockdep_clean \
Linus Torvalds26660a42016-03-20 18:23:21 -0700162 gpio_clean objtool_clean
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200163
164.PHONY: FORCE