blob: fa9d0a614d976298b17f426b400518c7ea1f1e7b [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 ''
35 @echo ' $$ make tools/install'
36 @echo ''
37 @echo ' installs all tools.'
38 @echo ''
Borislav Petkovd5dd8af2012-04-11 18:36:17 +020039 @echo 'Cleaning targets:'
40 @echo ''
41 @echo ' all of the above with the "_clean" string appended cleans'
42 @echo ' the respective build directory.'
43 @echo ' clean: a summary clean target to clean _all_ folders'
44
Lv Zhenga0c4acc2014-01-15 12:04:17 +080045acpi: FORCE
46 $(call descend,power/$@)
47
Borislav Petkov2363ecb2012-04-11 18:36:16 +020048cpupower: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000049 $(call descend,power/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020050
Roberta Dobrescu53375102015-03-28 21:43:08 +020051cgroup firewire hv guest usb virtio vm net iio: FORCE
Borislav Petkov85c66be2013-02-20 16:32:30 +010052 $(call descend,$@)
53
S. Lockwood-Childs0041898e2014-05-08 13:34:01 -040054liblockdep: FORCE
55 $(call descend,lib/lockdep)
56
Jiri Olsa379a9a22015-04-18 22:34:38 +020057libapi: FORCE
Borislav Petkov553873e2013-12-09 17:14:23 +010058 $(call descend,lib/api)
Borislav Petkov85c66be2013-02-20 16:32:30 +010059
Jiri Olsa16671c12015-04-18 22:34:39 +020060# The perf build does not follow the descend function setup,
61# invoking it via it's own make rule.
62PERF_O = $(if $(O),$(O)/tools/perf,)
63
Jiri Olsa379a9a22015-04-18 22:34:38 +020064perf: FORCE
Jiri Olsa16671c12015-04-18 22:34:39 +020065 $(Q)mkdir -p $(PERF_O) .
66 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir=
Borislav Petkov2363ecb2012-04-11 18:36:16 +020067
68selftests: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000069 $(call descend,testing/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020070
71turbostat x86_energy_perf_policy: FORCE
David Howellsca9dfc62012-11-05 15:15:24 +000072 $(call descend,power/x86/$@)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020073
Jacob Pan94f69962013-10-14 16:02:27 -070074tmon: FORCE
75 $(call descend,thermal/$@)
76
Pali Rohárb3fd7362015-06-06 15:42:28 +020077freefall: FORCE
78 $(call descend,laptop/$@)
79
Lv Zhenga0c4acc2014-01-15 12:04:17 +080080acpi_install:
81 $(call descend,power/$(@:_install=),install)
82
Borislav Petkov2363ecb2012-04-11 18:36:16 +020083cpupower_install:
David Howellsca9dfc62012-11-05 15:15:24 +000084 $(call descend,power/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020085
Bjarke Istrup Pedersen3eb20942014-02-09 11:41:52 +000086cgroup_install firewire_install hv_install lguest_install perf_install usb_install virtio_install vm_install net_install:
David Howellsca9dfc62012-11-05 15:15:24 +000087 $(call descend,$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020088
89selftests_install:
David Howellsca9dfc62012-11-05 15:15:24 +000090 $(call descend,testing/$(@:_clean=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020091
92turbostat_install x86_energy_perf_policy_install:
David Howellsca9dfc62012-11-05 15:15:24 +000093 $(call descend,power/x86/$(@:_install=),install)
Borislav Petkov2363ecb2012-04-11 18:36:16 +020094
Jacob Pan94f69962013-10-14 16:02:27 -070095tmon_install:
96 $(call descend,thermal/$(@:_install=),install)
97
Pali Rohárb3fd7362015-06-06 15:42:28 +020098freefall_install:
99 $(call descend,laptop/$(@:_install=),install)
100
Bjarke Istrup Pedersen3eb20942014-02-09 11:41:52 +0000101install: acpi_install cgroup_install cpupower_install hv_install firewire_install lguest_install \
Greg Thelen92e015b12013-01-04 13:05:17 -0800102 perf_install selftests_install turbostat_install usb_install \
Jacob Pan94f69962013-10-14 16:02:27 -0700103 virtio_install vm_install net_install x86_energy_perf_policy_install \
Kamal Mostafa836d5252015-11-11 14:25:33 -0800104 tmon_install freefall_install
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200105
Lv Zhenga0c4acc2014-01-15 12:04:17 +0800106acpi_clean:
107 $(call descend,power/acpi,clean)
108
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200109cpupower_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000110 $(call descend,power/cpupower,clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200111
Roberta Dobrescu53375102015-03-28 21:43:08 +0200112cgroup_clean hv_clean firewire_clean lguest_clean usb_clean virtio_clean vm_clean net_clean iio_clean:
Borislav Petkov85c66be2013-02-20 16:32:30 +0100113 $(call descend,$(@:_clean=),clean)
114
S. Lockwood-Childs0041898e2014-05-08 13:34:01 -0400115liblockdep_clean:
116 $(call descend,lib/lockdep,clean)
117
Jiri Olsa379a9a22015-04-18 22:34:38 +0200118libapi_clean:
Borislav Petkov553873e2013-12-09 17:14:23 +0100119 $(call descend,lib/api,clean)
Borislav Petkov85c66be2013-02-20 16:32:30 +0100120
Jiri Olsa379a9a22015-04-18 22:34:38 +0200121perf_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000122 $(call descend,$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200123
124selftests_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000125 $(call descend,testing/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200126
127turbostat_clean x86_energy_perf_policy_clean:
David Howellsca9dfc62012-11-05 15:15:24 +0000128 $(call descend,power/x86/$(@:_clean=),clean)
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200129
Jacob Pan94f69962013-10-14 16:02:27 -0700130tmon_clean:
131 $(call descend,thermal/tmon,clean)
132
Pali Rohárb3fd7362015-06-06 15:42:28 +0200133freefall_clean:
134 $(call descend,laptop/freefall,clean)
135
Bjarke Istrup Pedersen3eb20942014-02-09 11:41:52 +0000136clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \
Lv Zhenga0c4acc2014-01-15 12:04:17 +0800137 perf_clean selftests_clean turbostat_clean usb_clean virtio_clean \
Linus Torvalds23908db2015-06-26 15:46:08 -0700138 vm_clean net_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
139 freefall_clean
Borislav Petkov2363ecb2012-04-11 18:36:16 +0200140
141.PHONY: FORCE