]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - tools/Makefile
spi: Move spi code from Documentation to tools
[mirror_ubuntu-jammy-kernel.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 ''
a0c4acc0 11 @echo ' acpi - ACPI tools'
92e015b1 12 @echo ' cgroup - cgroup tools'
d5dd8afb
BP
13 @echo ' cpupower - a tool for all things x86 CPU power'
14 @echo ' firewire - the userspace part of nosy, an IEEE-1394 traffic sniffer'
3eb2094c 15 @echo ' hv - tools used when in Hyper-V clients'
53375103 16 @echo ' iio - IIO tools'
d5dd8afb
BP
17 @echo ' lguest - a minimal 32-bit x86 hypervisor'
18 @echo ' perf - Linux performance measurement and analysis tool'
19 @echo ' selftests - various kernel selftests'
5eca4d84 20 @echo ' spi - spi tools'
d5dd8afb
BP
21 @echo ' turbostat - Intel CPU idle stats and freq reporting tool'
22 @echo ' usb - USB testing tools'
23 @echo ' virtio - vhost test module'
e306e2c1 24 @echo ' net - misc networking tools'
d5dd8afb
BP
25 @echo ' vm - misc vm tools'
26 @echo ' x86_energy_perf_policy - Intel energy policy tool'
94f69966 27 @echo ' tmon - thermal monitoring and tuning tool'
b3fd7368 28 @echo ' freefall - laptop accelerometer program for disk protection'
d5dd8afb 29 @echo ''
ea01fa9f 30 @echo 'You can do:'
7e010562 31 @echo ' $$ make -C tools/ <tool>_install'
ea01fa9f
BP
32 @echo ''
33 @echo ' from the kernel command line to build and install one of'
34 @echo ' the tools above'
35 @echo ''
36 @echo ' $$ make tools/install'
37 @echo ''
38 @echo ' installs all tools.'
39 @echo ''
d5dd8afb
BP
40 @echo 'Cleaning targets:'
41 @echo ''
42 @echo ' all of the above with the "_clean" string appended cleans'
43 @echo ' the respective build directory.'
44 @echo ' clean: a summary clean target to clean _all_ folders'
45
a0c4acc0
LZ
46acpi: FORCE
47 $(call descend,power/$@)
48
2363ecb1 49cpupower: FORCE
ca9dfc6c 50 $(call descend,power/$@)
2363ecb1 51
5eca4d84 52cgroup firewire hv guest spi usb virtio vm net iio: FORCE
85c66be1
BP
53 $(call descend,$@)
54
0041898e
LC
55liblockdep: FORCE
56 $(call descend,lib/lockdep)
57
379a9a28 58libapi: FORCE
553873e1 59 $(call descend,lib/api)
85c66be1 60
16671c1e
JO
61# The perf build does not follow the descend function setup,
62# invoking it via it's own make rule.
63PERF_O = $(if $(O),$(O)/tools/perf,)
64
379a9a28 65perf: FORCE
16671c1e
JO
66 $(Q)mkdir -p $(PERF_O) .
67 $(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir=
2363ecb1
BP
68
69selftests: FORCE
ca9dfc6c 70 $(call descend,testing/$@)
2363ecb1
BP
71
72turbostat x86_energy_perf_policy: FORCE
ca9dfc6c 73 $(call descend,power/x86/$@)
2363ecb1 74
94f69966
JP
75tmon: FORCE
76 $(call descend,thermal/$@)
77
b3fd7368
PR
78freefall: FORCE
79 $(call descend,laptop/$@)
80
a0c4acc0
LZ
81acpi_install:
82 $(call descend,power/$(@:_install=),install)
83
2363ecb1 84cpupower_install:
ca9dfc6c 85 $(call descend,power/$(@:_install=),install)
2363ecb1 86
3eb2094c 87cgroup_install firewire_install hv_install lguest_install perf_install usb_install virtio_install vm_install net_install:
ca9dfc6c 88 $(call descend,$(@:_install=),install)
2363ecb1
BP
89
90selftests_install:
ca9dfc6c 91 $(call descend,testing/$(@:_clean=),install)
2363ecb1
BP
92
93turbostat_install x86_energy_perf_policy_install:
ca9dfc6c 94 $(call descend,power/x86/$(@:_install=),install)
2363ecb1 95
94f69966
JP
96tmon_install:
97 $(call descend,thermal/$(@:_install=),install)
98
b3fd7368
PR
99freefall_install:
100 $(call descend,laptop/$(@:_install=),install)
101
3eb2094c 102install: acpi_install cgroup_install cpupower_install hv_install firewire_install lguest_install \
92e015b1 103 perf_install selftests_install turbostat_install usb_install \
94f69966 104 virtio_install vm_install net_install x86_energy_perf_policy_install \
b3fd7368 105 tmon freefall_install
2363ecb1 106
a0c4acc0
LZ
107acpi_clean:
108 $(call descend,power/acpi,clean)
109
2363ecb1 110cpupower_clean:
ca9dfc6c 111 $(call descend,power/cpupower,clean)
2363ecb1 112
5eca4d84 113cgroup_clean hv_clean firewire_clean lguest_clean spi_clean usb_clean virtio_clean vm_clean net_clean iio_clean:
85c66be1
BP
114 $(call descend,$(@:_clean=),clean)
115
0041898e
LC
116liblockdep_clean:
117 $(call descend,lib/lockdep,clean)
118
379a9a28 119libapi_clean:
553873e1 120 $(call descend,lib/api,clean)
85c66be1 121
379a9a28 122perf_clean:
ca9dfc6c 123 $(call descend,$(@:_clean=),clean)
2363ecb1
BP
124
125selftests_clean:
ca9dfc6c 126 $(call descend,testing/$(@:_clean=),clean)
2363ecb1
BP
127
128turbostat_clean x86_energy_perf_policy_clean:
ca9dfc6c 129 $(call descend,power/x86/$(@:_clean=),clean)
2363ecb1 130
94f69966
JP
131tmon_clean:
132 $(call descend,thermal/tmon,clean)
133
b3fd7368
PR
134freefall_clean:
135 $(call descend,laptop/freefall,clean)
136
3eb2094c 137clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \
5eca4d84 138 perf_clean selftests_clean turbostat_clean spi_clean usb_clean virtio_clean \
23908db4
LT
139 vm_clean net_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
140 freefall_clean
2363ecb1
BP
141
142.PHONY: FORCE