Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm...
[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
53499109 88all: acpi cgroup cpupower gpio hv firewire lguest \
f6ba98c5
KM
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
53499109 99cgroup_install firewire_install gpio_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
53499109
AS
117install: acpi_install cgroup_install cpupower_install gpio_install \
118 hv_install firewire_install lguest_install \
92e015b1 119 perf_install selftests_install turbostat_install usb_install \
94f69966 120 virtio_install vm_install net_install x86_energy_perf_policy_install \
f9bc9e65 121 tmon_install freefall_install objtool_install kvm_stat_install
2363ecb1 122
a0c4acc0
LZ
123acpi_clean:
124 $(call descend,power/acpi,clean)
125
2363ecb1 126cpupower_clean:
ca9dfc6c 127 $(call descend,power/cpupower,clean)
2363ecb1 128
26660a40 129cgroup_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
130 $(call descend,$(@:_clean=),clean)
131
0041898e
LC
132liblockdep_clean:
133 $(call descend,lib/lockdep,clean)
134
379a9a28 135libapi_clean:
553873e1 136 $(call descend,lib/api,clean)
85c66be1 137
2f5a7f1d
JO
138libbpf_clean:
139 $(call descend,lib/bpf,clean)
140
141libsubcmd_clean:
142 $(call descend,lib/subcmd,clean)
143
379a9a28 144perf_clean:
ab362f5a
JO
145 $(Q)mkdir -p $(PERF_O) .
146 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir= clean
2363ecb1
BP
147
148selftests_clean:
ca9dfc6c 149 $(call descend,testing/$(@:_clean=),clean)
2363ecb1
BP
150
151turbostat_clean x86_energy_perf_policy_clean:
ca9dfc6c 152 $(call descend,power/x86/$(@:_clean=),clean)
2363ecb1 153
94f69966
JP
154tmon_clean:
155 $(call descend,thermal/tmon,clean)
156
b3fd7368
PR
157freefall_clean:
158 $(call descend,laptop/freefall,clean)
159
2f5a7f1d
JO
160build_clean:
161 $(call descend,build,clean)
162
3eb2094c 163clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \
5eca4d84 164 perf_clean selftests_clean turbostat_clean spi_clean usb_clean virtio_clean \
23908db4 165 vm_clean net_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
6d591c46 166 freefall_clean build_clean libbpf_clean libsubcmd_clean liblockdep_clean \
26660a40 167 gpio_clean objtool_clean
2363ecb1
BP
168
169.PHONY: FORCE