Makefile 3.9 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'
16
	@echo '  iio        - IIO tools'
B
Borislav Petkov 已提交
17 18 19 20 21 22
	@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'
23
	@echo '  net        - misc networking tools'
B
Borislav Petkov 已提交
24 25
	@echo '  vm         - misc vm tools'
	@echo '  x86_energy_perf_policy - Intel energy policy tool'
26
	@echo '  tmon       - thermal monitoring and tuning tool'
27
	@echo '  freefall   - laptop accelerometer program for disk protection'
B
Borislav Petkov 已提交
28
	@echo ''
29
	@echo 'You can do:'
30
	@echo ' $$ make -C tools/ <tool>_install'
31 32 33 34 35 36 37 38
	@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 已提交
39 40 41 42 43 44
	@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'

45 46 47
acpi: FORCE
	$(call descend,power/$@)

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

51
cgroup firewire hv guest usb virtio vm net iio: FORCE
52 53
	$(call descend,$@)

54 55 56
liblockdep: FORCE
	$(call descend,lib/lockdep)

57
libapi: FORCE
58
	$(call descend,lib/api)
59

60 61 62 63
# 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,)

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

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

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

74 75 76
tmon: FORCE
	$(call descend,thermal/$@)

77 78 79
freefall: FORCE
	$(call descend,laptop/$@)

80 81 82
acpi_install:
	$(call descend,power/$(@:_install=),install)

B
Borislav Petkov 已提交
83
cpupower_install:
84
	$(call descend,power/$(@:_install=),install)
B
Borislav Petkov 已提交
85

86
cgroup_install firewire_install hv_install lguest_install perf_install usb_install virtio_install vm_install net_install:
87
	$(call descend,$(@:_install=),install)
B
Borislav Petkov 已提交
88 89

selftests_install:
90
	$(call descend,testing/$(@:_clean=),install)
B
Borislav Petkov 已提交
91 92

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

95 96 97
tmon_install:
	$(call descend,thermal/$(@:_install=),install)

98 99 100
freefall_install:
	$(call descend,laptop/$(@:_install=),install)

101
install: acpi_install cgroup_install cpupower_install hv_install firewire_install lguest_install \
102
		perf_install selftests_install turbostat_install usb_install \
103
		virtio_install vm_install net_install x86_energy_perf_policy_install \
104
		tmon freefall_install
B
Borislav Petkov 已提交
105

106 107 108
acpi_clean:
	$(call descend,power/acpi,clean)

B
Borislav Petkov 已提交
109
cpupower_clean:
110
	$(call descend,power/cpupower,clean)
B
Borislav Petkov 已提交
111

112
cgroup_clean hv_clean firewire_clean lguest_clean usb_clean virtio_clean vm_clean net_clean iio_clean:
113 114
	$(call descend,$(@:_clean=),clean)

115 116 117
liblockdep_clean:
	$(call descend,lib/lockdep,clean)

118
libapi_clean:
119
	$(call descend,lib/api,clean)
120

121
perf_clean:
122
	$(call descend,$(@:_clean=),clean)
B
Borislav Petkov 已提交
123 124

selftests_clean:
125
	$(call descend,testing/$(@:_clean=),clean)
B
Borislav Petkov 已提交
126 127

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

130 131 132
tmon_clean:
	$(call descend,thermal/tmon,clean)

133 134 135
freefall_clean:
	$(call descend,laptop/freefall,clean)

136
clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \
137
		perf_clean selftests_clean turbostat_clean usb_clean virtio_clean \
138 139
		vm_clean net_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
		freefall_clean
B
Borislav Petkov 已提交
140 141

.PHONY: FORCE