blob: 6339f6ac3ccbdf1ef285df9871baf6ad34aad410 [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'
16 @echo ' hv - tools used when in Hyper-V clients'
17 @echo ' iio - IIO tools'
18 @echo ' lguest - a minimal 32-bit x86 hypervisor'
19 @echo ' net - misc networking tools'
20 @echo ' perf - Linux performance measurement and analysis tool'
21 @echo ' selftests - various kernel selftests'
Linus Torvalds747a9b02016-01-14 11:39:09 -080022 @echo ' spi - spi tools'
Josh Poimboeuf20a7add2015-12-18 06:39:15 -060023 @echo ' tmon - thermal monitoring and tuning tool'
24 @echo ' turbostat - Intel CPU idle stats and freq reporting tool'
25 @echo ' usb - USB testing tools'
26 @echo ' virtio - vhost test module'
27 @echo ' vm - misc vm tools'
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020028 @echo ' x86_energy_perf_policy - Intel energy policy tool'
29 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020030 @echo 'You can do:'
Borislav Petkov7e010562013-01-29 11:48:11 +010031 @echo ' $$ make -C tools/ <tool>_install'
Borislav Petkovea01fa92012-04-11 18:36:18 +020032 @echo ''
33 @echo ' from the kernel command line to build and install one of'
34 @echo ' the tools above'
35 @echo ''
Kamal Mostafaf6ba98c2015-11-11 14:25:34 -080036 @echo ' $$ make tools/all'
37 @echo ''
38 @echo ' builds all tools.'
39 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020040 @echo ' $$ make tools/install'
41 @echo ''
42 @echo ' installs all tools.'
43 @echo ''
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020044 @echo 'Cleaning targets:'
45 @echo ''
46 @echo ' all of the above with the "_clean" string appended cleans'
47 @echo ' the respective build directory.'
48 @echo ' clean: a summary clean target to clean _all_ folders'
49
Lv Zhenga0c4acc2014-01-15 12:04:17 +080050acpi: FORCE
51 $(call descend,power/$@)
52
Borislav Petkov2363ecb2012-04-11 18:36:16 +020053cpupower: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000054 $(call descend,power/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020055
Joshua Clayton5eca4d82015-11-18 14:30:37 -080056cgroup firewire hv guest spi usb virtio vm net iio: FORCE
Borislav Petkov85c66be2013-02-20 16:32:30 +010057 $(call descend,$@)
58
S. Lockwood-Childs0041898e2014-05-08 13:34:01 -040059liblockdep: FORCE
60 $(call descend,lib/lockdep)
61
Jiri Olsa379a9a22015-04-18 22:34:38 +020062libapi: FORCE
Borislav Petkov553873e2013-12-09 17:14:23 +010063 $(call descend,lib/api)
Borislav Petkov85c66be2013-02-20 16:32:30 +010064
Jiri Olsa16671c12015-04-18 22:34:39 +020065# The perf build does not follow the descend function setup,
66# invoking it via it's own make rule.
67PERF_O = $(if $(O),$(O)/tools/perf,)
68
Jiri Olsa379a9a22015-04-18 22:34:38 +020069perf: FORCE
Jiri Olsa16671c12015-04-18 22:34:39 +020070 $(Q)mkdir -p $(PERF_O) .
71 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir=
Borislav Petkov2363ecb2012-04-11 18:36:16 +020072
73selftests: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000074 $(call descend,testing/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020075
76turbostat x86_energy_perf_policy: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000077 $(call descend,power/x86/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020078
Jacob Pan94f69962013-10-14 16:02:27 -070079tmon: FORCE
80 $(call descend,thermal/$@)
81
Pali Rohárb3fd7362015-06-06 15:42:28 +020082freefall: FORCE
83 $(call descend,laptop/$@)
84
Kamal Mostafaf6ba98c2015-11-11 14:25:34 -080085all: acpi cgroup cpupower hv firewire lguest \
86 perf selftests turbostat usb \
87 virtio vm net x86_energy_perf_policy \
88 tmon freefall
89
Lv Zhenga0c4acc2014-01-15 12:04:17 +080090acpi_install:
91 $(call descend,power/$(@:_install=),install)
92
Borislav Petkov2363ecb2012-04-11 18:36:16 +020093cpupower_install:
David Howellsca9dfc62012-11-05 15:15:24 +000094 $(call descend,power/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020095
Bjarke Istrup Pedersen3eb20942014-02-09 11:41:52 +000096cgroup_install firewire_install hv_install lguest_install perf_install usb_install virtio_install vm_install net_install:
David Howellsca9dfc62012-11-05 15:15:24 +000097 $(call descend,$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020098
99selftests_install:
Kevin Hilman9a13c652015-11-17 13:54:19 -0800100 $(call descend,testing/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200101
102turbostat_install x86_energy_perf_policy_install:
David Howellsca9dfc62012-11-05 15:15:24 +0000103 $(call descend,power/x86/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200104
Jacob Pan94f69962013-10-14 16:02:27 -0700105tmon_install:
106 $(call descend,thermal/$(@:_install=),install)
107
Pali Rohárb3fd7362015-06-06 15:42:28 +0200108freefall_install:
109 $(call descend,laptop/$(@:_install=),install)
110
Bjarke Istrup Pedersen3eb20942014-02-09 11:41:52 +0000111install: acpi_install cgroup_install cpupower_install hv_install firewire_install lguest_install \
Greg Thelen92e015b12013-01-04 13:05:17 -0800112 perf_install selftests_install turbostat_install usb_install \
Jacob Pan94f69962013-10-14 16:02:27 -0700113 virtio_install vm_install net_install x86_energy_perf_policy_install \
Kamal Mostafa836d5252015-11-11 14:25:33 -0800114 tmon_install freefall_install
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200115
Lv Zhenga0c4acc2014-01-15 12:04:17 +0800116acpi_clean:
117 $(call descend,power/acpi,clean)
118
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200119cpupower_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000120 $(call descend,power/cpupower,clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200121
Joshua Clayton5eca4d82015-11-18 14:30:37 -0800122cgroup_clean hv_clean firewire_clean lguest_clean spi_clean usb_clean virtio_clean vm_clean net_clean iio_clean:
Borislav Petkov85c66be2013-02-20 16:32:30 +0100123 $(call descend,$(@:_clean=),clean)
124
S. Lockwood-Childs0041898e2014-05-08 13:34:01 -0400125liblockdep_clean:
126 $(call descend,lib/lockdep,clean)
127
Jiri Olsa379a9a22015-04-18 22:34:38 +0200128libapi_clean:
Borislav Petkov553873e2013-12-09 17:14:23 +0100129 $(call descend,lib/api,clean)
Borislav Petkov85c66be2013-02-20 16:32:30 +0100130
Jiri Olsa2f5a7f12016-01-11 11:54:48 +0100131libbpf_clean:
132 $(call descend,lib/bpf,clean)
133
134libsubcmd_clean:
135 $(call descend,lib/subcmd,clean)
136
Jiri Olsa379a9a22015-04-18 22:34:38 +0200137perf_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000138 $(call descend,$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200139
140selftests_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000141 $(call descend,testing/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200142
143turbostat_clean x86_energy_perf_policy_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000144 $(call descend,power/x86/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200145
Jacob Pan94f69962013-10-14 16:02:27 -0700146tmon_clean:
147 $(call descend,thermal/tmon,clean)
148
Pali Rohárb3fd7362015-06-06 15:42:28 +0200149freefall_clean:
150 $(call descend,laptop/freefall,clean)
151
Jiri Olsa2f5a7f12016-01-11 11:54:48 +0100152build_clean:
153 $(call descend,build,clean)
154
Bjarke Istrup Pedersen3eb20942014-02-09 11:41:52 +0000155clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \
Joshua Clayton5eca4d82015-11-18 14:30:37 -0800156 perf_clean selftests_clean turbostat_clean spi_clean usb_clean virtio_clean \
Linus Torvalds23908db2015-06-26 15:46:08 -0700157 vm_clean net_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
Jiri Olsa2f5a7f12016-01-11 11:54:48 +0100158 freefall_clean build_clean libbpf_clean libsubcmd_clean liblockdep_clean
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200159
160.PHONY: FORCE