Makefile 3.6 KB
Newer Older
1 2 3 4 5
# Some of the tools (perf) use same make variables
# as in kernel build.
export srctree=
export objtree=

B
Borislav Petkov 已提交
6 7
include scripts/Makefile.include

B
Borislav Petkov 已提交
8 9 10
help:
	@echo 'Possible targets:'
	@echo ''
11
	@echo '  acpi       - ACPI tools'
12
	@echo '  cgroup     - cgroup tools'
B
Borislav Petkov 已提交
13 14
	@echo '  cpupower   - a tool for all things x86 CPU power'
	@echo '  firewire   - the userspace part of nosy, an IEEE-1394 traffic sniffer'
15
	@echo '  hv         - tools used when in Hyper-V clients'
B
Borislav Petkov 已提交
16 17 18 19 20 21
	@echo '  lguest     - a minimal 32-bit x86 hypervisor'
	@echo '  perf       - Linux performance measurement and analysis tool'
	@echo '  selftests  - various kernel selftests'
	@echo '  turbostat  - Intel CPU idle stats and freq reporting tool'
	@echo '  usb        - USB testing tools'
	@echo '  virtio     - vhost test module'
22
	@echo '  net        - misc networking tools'
B
Borislav Petkov 已提交
23 24
	@echo '  vm         - misc vm tools'
	@echo '  x86_energy_perf_policy - Intel energy policy tool'
25
	@echo '  tmon       - thermal monitoring and tuning tool'
B
Borislav Petkov 已提交
26
	@echo ''
27
	@echo 'You can do:'
28
	@echo ' $$ make -C tools/ <tool>_install'
29 30 31 32 33 34 35 36
	@echo ''
	@echo '  from the kernel command line to build and install one of'
	@echo '  the tools above'
	@echo ''
	@echo '  $$ make tools/install'
	@echo ''
	@echo '  installs all tools.'
	@echo ''
B
Borislav Petkov 已提交
37 38 39 40 41 42
	@echo 'Cleaning targets:'
	@echo ''
	@echo '  all of the above with the "_clean" string appended cleans'
	@echo '    the respective build directory.'
	@echo '  clean: a summary clean target to clean _all_ folders'

43 44 45
acpi: FORCE
	$(call descend,power/$@)

B
Borislav Petkov 已提交
46
cpupower: FORCE
47
	$(call descend,power/$@)
B
Borislav Petkov 已提交
48

49
cgroup firewire hv guest usb virtio vm net: FORCE
50 51
	$(call descend,$@)

52 53 54
liblockdep: FORCE
	$(call descend,lib/lockdep)

55
libapi: FORCE
56
	$(call descend,lib/api)
57

58 59 60 61
# The perf build does not follow the descend function setup,
# invoking it via it's own make rule.
PERF_O   = $(if $(O),$(O)/tools/perf,)

62
perf: FORCE
63 64
	$(Q)mkdir -p $(PERF_O) .
	$(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir=
B
Borislav Petkov 已提交
65 66

selftests: FORCE
67
	$(call descend,testing/$@)
B
Borislav Petkov 已提交
68 69

turbostat x86_energy_perf_policy: FORCE
70
	$(call descend,power/x86/$@)
B
Borislav Petkov 已提交
71

72 73 74
tmon: FORCE
	$(call descend,thermal/$@)

75 76 77
acpi_install:
	$(call descend,power/$(@:_install=),install)

B
Borislav Petkov 已提交
78
cpupower_install:
79
	$(call descend,power/$(@:_install=),install)
B
Borislav Petkov 已提交
80

81
cgroup_install firewire_install hv_install lguest_install perf_install usb_install virtio_install vm_install net_install:
82
	$(call descend,$(@:_install=),install)
B
Borislav Petkov 已提交
83 84

selftests_install:
85
	$(call descend,testing/$(@:_clean=),install)
B
Borislav Petkov 已提交
86 87

turbostat_install x86_energy_perf_policy_install:
88
	$(call descend,power/x86/$(@:_install=),install)
B
Borislav Petkov 已提交
89

90 91 92
tmon_install:
	$(call descend,thermal/$(@:_install=),install)

93
install: acpi_install cgroup_install cpupower_install hv_install firewire_install lguest_install \
94
		perf_install selftests_install turbostat_install usb_install \
95 96
		virtio_install vm_install net_install x86_energy_perf_policy_install \
	tmon
B
Borislav Petkov 已提交
97

98 99 100
acpi_clean:
	$(call descend,power/acpi,clean)

B
Borislav Petkov 已提交
101
cpupower_clean:
102
	$(call descend,power/cpupower,clean)
B
Borislav Petkov 已提交
103

104
cgroup_clean hv_clean firewire_clean lguest_clean usb_clean virtio_clean vm_clean net_clean:
105 106
	$(call descend,$(@:_clean=),clean)

107 108 109
liblockdep_clean:
	$(call descend,lib/lockdep,clean)

110
libapi_clean:
111
	$(call descend,lib/api,clean)
112

113
perf_clean:
114
	$(call descend,$(@:_clean=),clean)
B
Borislav Petkov 已提交
115 116

selftests_clean:
117
	$(call descend,testing/$(@:_clean=),clean)
B
Borislav Petkov 已提交
118 119

turbostat_clean x86_energy_perf_policy_clean:
120
	$(call descend,power/x86/$(@:_clean=),clean)
B
Borislav Petkov 已提交
121

122 123 124
tmon_clean:
	$(call descend,thermal/tmon,clean)

125
clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \
126
		perf_clean selftests_clean turbostat_clean usb_clean virtio_clean \
127
		vm_clean net_clean x86_energy_perf_policy_clean tmon_clean
B
Borislav Petkov 已提交
128 129

.PHONY: FORCE