blob: 7dc820a8c1f11b0973605aab313e2ecaa75ca1a6 [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 ''
Lv Zhenga0c4acc2014-01-15 12:04:17 +080011 @echo ' acpi - ACPI tools'
Greg Thelen92e015b12013-01-04 13:05:17 -080012 @echo ' cgroup - cgroup tools'
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020013 @echo ' cpupower - a tool for all things x86 CPU power'
14 @echo ' firewire - the userspace part of nosy, an IEEE-1394 traffic sniffer'
Bjarke Istrup Pedersen3eb20942014-02-09 11:41:52 +000015 @echo ' hv - tools used when in Hyper-V clients'
Roberta Dobrescu53375102015-03-28 21:43:08 +020016 @echo ' iio - IIO tools'
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020017 @echo ' lguest - a minimal 32-bit x86 hypervisor'
18 @echo ' perf - Linux performance measurement and analysis tool'
19 @echo ' selftests - various kernel selftests'
20 @echo ' turbostat - Intel CPU idle stats and freq reporting tool'
21 @echo ' usb - USB testing tools'
22 @echo ' virtio - vhost test module'
Daniel Borkmanne306e2c2013-03-20 12:11:47 +000023 @echo ' net - misc networking tools'
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020024 @echo ' vm - misc vm tools'
25 @echo ' x86_energy_perf_policy - Intel energy policy tool'
Jacob Pan94f69962013-10-14 16:02:27 -070026 @echo ' tmon - thermal monitoring and tuning tool'
Pali Rohárb3fd7362015-06-06 15:42:28 +020027 @echo ' freefall - laptop accelerometer program for disk protection'
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020028 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020029 @echo 'You can do:'
Borislav Petkov7e010562013-01-29 11:48:11 +010030 @echo ' $$ make -C tools/ <tool>_install'
Borislav Petkovea01fa92012-04-11 18:36:18 +020031 @echo ''
32 @echo ' from the kernel command line to build and install one of'
33 @echo ' the tools above'
34 @echo ''
Kamal Mostafaf6ba98c2015-11-11 14:25:34 -080035 @echo ' $$ make tools/all'
36 @echo ''
37 @echo ' builds all tools.'
38 @echo ''
Borislav Petkovea01fa92012-04-11 18:36:18 +020039 @echo ' $$ make tools/install'
40 @echo ''
41 @echo ' installs all tools.'
42 @echo ''
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020043 @echo 'Cleaning targets:'
44 @echo ''
45 @echo ' all of the above with the "_clean" string appended cleans'
46 @echo ' the respective build directory.'
47 @echo ' clean: a summary clean target to clean _all_ folders'
48
Lv Zhenga0c4acc2014-01-15 12:04:17 +080049acpi: FORCE
50 $(call descend,power/$@)
51
Borislav Petkov2363ecb2012-04-11 18:36:16 +020052cpupower: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000053 $(call descend,power/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020054
Roberta Dobrescu53375102015-03-28 21:43:08 +020055cgroup firewire hv guest usb virtio vm net iio: FORCE
Borislav Petkov85c66be2013-02-20 16:32:30 +010056 $(call descend,$@)
57
S. Lockwood-Childs0041898e2014-05-08 13:34:01 -040058liblockdep: FORCE
59 $(call descend,lib/lockdep)
60
Jiri Olsa379a9a22015-04-18 22:34:38 +020061libapi: FORCE
Borislav Petkov553873e2013-12-09 17:14:23 +010062 $(call descend,lib/api)
Borislav Petkov85c66be2013-02-20 16:32:30 +010063
Jiri Olsa16671c12015-04-18 22:34:39 +020064# The perf build does not follow the descend function setup,
65# invoking it via it's own make rule.
66PERF_O = $(if $(O),$(O)/tools/perf,)
67
Jiri Olsa379a9a22015-04-18 22:34:38 +020068perf: FORCE
Jiri Olsa16671c12015-04-18 22:34:39 +020069 $(Q)mkdir -p $(PERF_O) .
70 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir=
Borislav Petkov2363ecb2012-04-11 18:36:16 +020071
72selftests: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000073 $(call descend,testing/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020074
75turbostat x86_energy_perf_policy: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000076 $(call descend,power/x86/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020077
Jacob Pan94f69962013-10-14 16:02:27 -070078tmon: FORCE
79 $(call descend,thermal/$@)
80
Pali Rohárb3fd7362015-06-06 15:42:28 +020081freefall: FORCE
82 $(call descend,laptop/$@)
83
Kamal Mostafaf6ba98c2015-11-11 14:25:34 -080084all: acpi cgroup cpupower hv firewire lguest \
85 perf selftests turbostat usb \
86 virtio vm net x86_energy_perf_policy \
87 tmon freefall
88
Lv Zhenga0c4acc2014-01-15 12:04:17 +080089acpi_install:
90 $(call descend,power/$(@:_install=),install)
91
Borislav Petkov2363ecb2012-04-11 18:36:16 +020092cpupower_install:
David Howellsca9dfc62012-11-05 15:15:24 +000093 $(call descend,power/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020094
Bjarke Istrup Pedersen3eb20942014-02-09 11:41:52 +000095cgroup_install firewire_install hv_install lguest_install perf_install usb_install virtio_install vm_install net_install:
David Howellsca9dfc62012-11-05 15:15:24 +000096 $(call descend,$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020097
98selftests_install:
David Howellsca9dfc62012-11-05 15:15:24 +000099 $(call descend,testing/$(@:_clean=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200100
101turbostat_install x86_energy_perf_policy_install:
David Howellsca9dfc62012-11-05 15:15:24 +0000102 $(call descend,power/x86/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200103
Jacob Pan94f69962013-10-14 16:02:27 -0700104tmon_install:
105 $(call descend,thermal/$(@:_install=),install)
106
Pali Rohárb3fd7362015-06-06 15:42:28 +0200107freefall_install:
108 $(call descend,laptop/$(@:_install=),install)
109
Bjarke Istrup Pedersen3eb20942014-02-09 11:41:52 +0000110install: acpi_install cgroup_install cpupower_install hv_install firewire_install lguest_install \
Greg Thelen92e015b12013-01-04 13:05:17 -0800111 perf_install selftests_install turbostat_install usb_install \
Jacob Pan94f69962013-10-14 16:02:27 -0700112 virtio_install vm_install net_install x86_energy_perf_policy_install \
Kamal Mostafa836d5252015-11-11 14:25:33 -0800113 tmon_install freefall_install
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200114
Lv Zhenga0c4acc2014-01-15 12:04:17 +0800115acpi_clean:
116 $(call descend,power/acpi,clean)
117
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200118cpupower_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000119 $(call descend,power/cpupower,clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200120
Roberta Dobrescu53375102015-03-28 21:43:08 +0200121cgroup_clean hv_clean firewire_clean lguest_clean usb_clean virtio_clean vm_clean net_clean iio_clean:
Borislav Petkov85c66be2013-02-20 16:32:30 +0100122 $(call descend,$(@:_clean=),clean)
123
S. Lockwood-Childs0041898e2014-05-08 13:34:01 -0400124liblockdep_clean:
125 $(call descend,lib/lockdep,clean)
126
Jiri Olsa379a9a22015-04-18 22:34:38 +0200127libapi_clean:
Borislav Petkov553873e2013-12-09 17:14:23 +0100128 $(call descend,lib/api,clean)
Borislav Petkov85c66be2013-02-20 16:32:30 +0100129
Jiri Olsa379a9a22015-04-18 22:34:38 +0200130perf_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000131 $(call descend,$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200132
133selftests_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000134 $(call descend,testing/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200135
136turbostat_clean x86_energy_perf_policy_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000137 $(call descend,power/x86/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200138
Jacob Pan94f69962013-10-14 16:02:27 -0700139tmon_clean:
140 $(call descend,thermal/tmon,clean)
141
Pali Rohárb3fd7362015-06-06 15:42:28 +0200142freefall_clean:
143 $(call descend,laptop/freefall,clean)
144
Bjarke Istrup Pedersen3eb20942014-02-09 11:41:52 +0000145clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \
Lv Zhenga0c4acc2014-01-15 12:04:17 +0800146 perf_clean selftests_clean turbostat_clean usb_clean virtio_clean \
Linus Torvalds23908db2015-06-26 15:46:08 -0700147 vm_clean net_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
148 freefall_clean
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200149
150.PHONY: FORCE