]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/Makefile
Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-bionic-kernel.git] / tools / Makefile
CommitLineData
2363ecb1
BP
1include scripts/Makefile.include
2
d5dd8afb
BP
3help:
4 @echo 'Possible targets:'
5 @echo ''
92e015b1 6 @echo ' cgroup - cgroup tools'
d5dd8afb
BP
7 @echo ' cpupower - a tool for all things x86 CPU power'
8 @echo ' firewire - the userspace part of nosy, an IEEE-1394 traffic sniffer'
9 @echo ' lguest - a minimal 32-bit x86 hypervisor'
10 @echo ' perf - Linux performance measurement and analysis tool'
11 @echo ' selftests - various kernel selftests'
12 @echo ' turbostat - Intel CPU idle stats and freq reporting tool'
13 @echo ' usb - USB testing tools'
14 @echo ' virtio - vhost test module'
e306e2c1 15 @echo ' net - misc networking tools'
d5dd8afb
BP
16 @echo ' vm - misc vm tools'
17 @echo ' x86_energy_perf_policy - Intel energy policy tool'
94f69966 18 @echo ' tmon - thermal monitoring and tuning tool'
d5dd8afb 19 @echo ''
ea01fa9f 20 @echo 'You can do:'
7e010562 21 @echo ' $$ make -C tools/ <tool>_install'
ea01fa9f
BP
22 @echo ''
23 @echo ' from the kernel command line to build and install one of'
24 @echo ' the tools above'
25 @echo ''
26 @echo ' $$ make tools/install'
27 @echo ''
28 @echo ' installs all tools.'
29 @echo ''
d5dd8afb
BP
30 @echo 'Cleaning targets:'
31 @echo ''
32 @echo ' all of the above with the "_clean" string appended cleans'
33 @echo ' the respective build directory.'
34 @echo ' clean: a summary clean target to clean _all_ folders'
35
2363ecb1 36cpupower: FORCE
ca9dfc6c 37 $(call descend,power/$@)
2363ecb1 38
73287a43 39cgroup firewire guest usb virtio vm net: FORCE
85c66be1
BP
40 $(call descend,$@)
41
42liblk: FORCE
43 $(call descend,lib/lk)
44
45perf: liblk FORCE
ca9dfc6c 46 $(call descend,$@)
2363ecb1
BP
47
48selftests: FORCE
ca9dfc6c 49 $(call descend,testing/$@)
2363ecb1
BP
50
51turbostat x86_energy_perf_policy: FORCE
ca9dfc6c 52 $(call descend,power/x86/$@)
2363ecb1 53
94f69966
JP
54tmon: FORCE
55 $(call descend,thermal/$@)
56
2363ecb1 57cpupower_install:
ca9dfc6c 58 $(call descend,power/$(@:_install=),install)
2363ecb1 59
e306e2c1 60cgroup_install firewire_install lguest_install perf_install usb_install virtio_install vm_install net_install:
ca9dfc6c 61 $(call descend,$(@:_install=),install)
2363ecb1
BP
62
63selftests_install:
ca9dfc6c 64 $(call descend,testing/$(@:_clean=),install)
2363ecb1
BP
65
66turbostat_install x86_energy_perf_policy_install:
ca9dfc6c 67 $(call descend,power/x86/$(@:_install=),install)
2363ecb1 68
94f69966
JP
69tmon_install:
70 $(call descend,thermal/$(@:_install=),install)
71
92e015b1
GT
72install: cgroup_install cpupower_install firewire_install lguest_install \
73 perf_install selftests_install turbostat_install usb_install \
94f69966
JP
74 virtio_install vm_install net_install x86_energy_perf_policy_install \
75 tmon
2363ecb1
BP
76
77cpupower_clean:
ca9dfc6c 78 $(call descend,power/cpupower,clean)
2363ecb1 79
73287a43 80cgroup_clean firewire_clean lguest_clean usb_clean virtio_clean vm_clean net_clean:
85c66be1
BP
81 $(call descend,$(@:_clean=),clean)
82
83liblk_clean:
84 $(call descend,lib/lk,clean)
85
86perf_clean: liblk_clean
ca9dfc6c 87 $(call descend,$(@:_clean=),clean)
2363ecb1
BP
88
89selftests_clean:
ca9dfc6c 90 $(call descend,testing/$(@:_clean=),clean)
2363ecb1
BP
91
92turbostat_clean x86_energy_perf_policy_clean:
ca9dfc6c 93 $(call descend,power/x86/$(@:_clean=),clean)
2363ecb1 94
94f69966
JP
95tmon_clean:
96 $(call descend,thermal/tmon,clean)
97
92e015b1
GT
98clean: cgroup_clean cpupower_clean firewire_clean lguest_clean perf_clean \
99 selftests_clean turbostat_clean usb_clean virtio_clean \
94f69966 100 vm_clean net_clean x86_energy_perf_policy_clean tmon_clean
2363ecb1
BP
101
102.PHONY: FORCE