Merge branch 'for-4.7-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj...
[linux-2.6-block.git] / tools / Makefile
CommitLineData
16671c1e
JO
1# Some of the tools (perf) use same make variables
2# as in kernel build.
3export srctree=
4export objtree=
5
2363ecb1
BP
6include scripts/Makefile.include
7
d5dd8afb
BP
8help:
9 @echo 'Possible targets:'
10 @echo ''
20a7add8
JP
11 @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'
6d591c46 16 @echo ' gpio - GPIO tools'
20a7add8
JP
17 @echo ' hv - tools used when in Hyper-V clients'
18 @echo ' iio - IIO tools'
f9bc9e65 19 @echo ' kvm_stat - top-like utility for displaying kvm statistics'
20a7add8
JP
20 @echo ' lguest - a minimal 32-bit x86 hypervisor'
21 @echo ' net - misc networking tools'
22 @echo ' perf - Linux performance measurement and analysis tool'
23 @echo ' selftests - various kernel selftests'
747a9b0a 24 @echo ' spi - spi tools'
442f04c3 25 @echo ' objtool - an ELF object analysis tool'
20a7add8
JP
26 @echo ' tmon - thermal monitoring and tuning tool'
27 @echo ' turbostat - Intel CPU idle stats and freq reporting tool'
28 @echo ' usb - USB testing tools'
29 @echo ' virtio - vhost test module'
30 @echo ' vm - misc vm tools'
d5dd8afb
BP
31 @echo ' x86_energy_perf_policy - Intel energy policy tool'
32 @echo ''
ea01fa9f 33 @echo 'You can do:'
7e010562 34 @echo ' $$ make -C tools/ <tool>_install'
ea01fa9f
BP
35 @echo ''
36 @echo ' from the kernel command line to build and install one of'
37 @echo ' the tools above'
38 @echo ''
f6ba98c5
KM
39 @echo ' $$ make tools/all'
40 @echo ''
41 @echo ' builds all tools.'
42 @echo ''
ea01fa9f
BP
43 @echo ' $$ make tools/install'
44 @echo ''
45 @echo ' installs all tools.'
46 @echo ''
d5dd8afb
BP
47 @echo 'Cleaning targets:'
48 @echo ''
49 @echo ' all of the above with the "_clean" string appended cleans'
50 @echo ' the respective build directory.'
51 @echo ' clean: a summary clean target to clean _all_ folders'
52
a0c4acc0
LZ
53acpi: FORCE
54 $(call descend,power/$@)
55
2363ecb1 56cpupower: FORCE
ca9dfc6c 57 $(call descend,power/$@)
2363ecb1 58
26660a40 59cgroup firewire hv guest spi usb virtio vm net iio gpio objtool: FORCE
85c66be1
BP
60 $(call descend,$@)
61
0041898e
LC
62liblockdep: FORCE
63 $(call descend,lib/lockdep)
64
379a9a28 65libapi: FORCE
553873e1 66 $(call descend,lib/api)
85c66be1 67
16671c1e
JO
68# The perf build does not follow the descend function setup,
69# invoking it via it's own make rule.
70PERF_O = $(if $(O),$(O)/tools/perf,)
71
379a9a28 72perf: FORCE
16671c1e
JO
73 $(Q)mkdir -p $(PERF_O) .
74 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir=
2363ecb1
BP
75
76selftests: FORCE
ca9dfc6c 77 $(call descend,testing/$@)
2363ecb1
BP
78
79turbostat x86_energy_perf_policy: FORCE
ca9dfc6c 80 $(call descend,power/x86/$@)
2363ecb1 81
94f69966
JP
82tmon: FORCE
83 $(call descend,thermal/$@)
84
b3fd7368
PR
85freefall: FORCE
86 $(call descend,laptop/$@)
87
f6ba98c5
KM
88all: acpi cgroup cpupower hv firewire lguest \
89 perf selftests turbostat usb \
90 virtio vm net x86_energy_perf_policy \
442f04c3 91 tmon freefall objtool
f6ba98c5 92
a0c4acc0
LZ
93acpi_install:
94 $(call descend,power/$(@:_install=),install)
95
2363ecb1 96cpupower_install:
ca9dfc6c 97 $(call descend,power/$(@:_install=),install)
2363ecb1 98
442f04c3 99cgroup_install firewire_install hv_install lguest_install perf_install usb_install virtio_install vm_install net_install objtool_install:
ca9dfc6c 100 $(call descend,$(@:_install=),install)
2363ecb1
BP
101
102selftests_install:
9a13c658 103 $(call descend,testing/$(@:_install=),install)
2363ecb1
BP
104
105turbostat_install x86_energy_perf_policy_install:
ca9dfc6c 106 $(call descend,power/x86/$(@:_install=),install)
2363ecb1 107
94f69966
JP
108tmon_install:
109 $(call descend,thermal/$(@:_install=),install)
110
b3fd7368
PR
111freefall_install:
112 $(call descend,laptop/$(@:_install=),install)
113
f9bc9e65
JF
114kvm_stat_install:
115 $(call descend,kvm/$(@:_install=),install)
116
3eb2094c 117install: acpi_install cgroup_install cpupower_install hv_install firewire_install lguest_install \
92e015b1 118 perf_install selftests_install turbostat_install usb_install \
94f69966 119 virtio_install vm_install net_install x86_energy_perf_policy_install \
f9bc9e65 120 tmon_install freefall_install objtool_install kvm_stat_install
2363ecb1 121
a0c4acc0
LZ
122acpi_clean:
123 $(call descend,power/acpi,clean)
124
2363ecb1 125cpupower_clean:
ca9dfc6c 126 $(call descend,power/cpupower,clean)
2363ecb1 127
26660a40 128cgroup_clean hv_clean firewire_clean lguest_clean spi_clean usb_clean virtio_clean vm_clean net_clean iio_clean gpio_clean objtool_clean:
85c66be1
BP
129 $(call descend,$(@:_clean=),clean)
130
0041898e
LC
131liblockdep_clean:
132 $(call descend,lib/lockdep,clean)
133
379a9a28 134libapi_clean:
553873e1 135 $(call descend,lib/api,clean)
85c66be1 136
2f5a7f1d
JO
137libbpf_clean:
138 $(call descend,lib/bpf,clean)
139
140libsubcmd_clean:
141 $(call descend,lib/subcmd,clean)
142
379a9a28 143perf_clean:
ab362f5a
JO
144 $(Q)mkdir -p $(PERF_O) .
145 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir= clean
2363ecb1
BP
146
147selftests_clean:
ca9dfc6c 148 $(call descend,testing/$(@:_clean=),clean)
2363ecb1
BP
149
150turbostat_clean x86_energy_perf_policy_clean:
ca9dfc6c 151 $(call descend,power/x86/$(@:_clean=),clean)
2363ecb1 152
94f69966
JP
153tmon_clean:
154 $(call descend,thermal/tmon,clean)
155
b3fd7368
PR
156freefall_clean:
157 $(call descend,laptop/freefall,clean)
158
2f5a7f1d
JO
159build_clean:
160 $(call descend,build,clean)
161
3eb2094c 162clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \
5eca4d84 163 perf_clean selftests_clean turbostat_clean spi_clean usb_clean virtio_clean \
23908db4 164 vm_clean net_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
6d591c46 165 freefall_clean build_clean libbpf_clean libsubcmd_clean liblockdep_clean \
26660a40 166 gpio_clean objtool_clean
2363ecb1
BP
167
168.PHONY: FORCE