Makefile 4.2 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
	@echo ''
	@echo '  from the kernel command line to build and install one of'
	@echo '  the tools above'
	@echo ''
K
Kamal Mostafa 已提交
35 36 37 38
	@echo '  $$ make tools/all'
	@echo ''
	@echo '  builds all tools.'
	@echo ''
39 40 41 42
	@echo '  $$ make tools/install'
	@echo ''
	@echo '  installs all tools.'
	@echo ''
B
Borislav Petkov 已提交
43 44 45 46 47 48
	@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'

49 50 51
acpi: FORCE
	$(call descend,power/$@)

B
Borislav Petkov 已提交
52
cpupower: FORCE
53
	$(call descend,power/$@)
B
Borislav Petkov 已提交
54

55
cgroup firewire hv guest usb virtio vm net iio: FORCE
56 57
	$(call descend,$@)

58 59 60
liblockdep: FORCE
	$(call descend,lib/lockdep)

61
libapi: FORCE
62
	$(call descend,lib/api)
63

64 65 66 67
# 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,)

68
perf: FORCE
69 70
	$(Q)mkdir -p $(PERF_O) .
	$(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir=
B
Borislav Petkov 已提交
71 72

selftests: FORCE
73
	$(call descend,testing/$@)
B
Borislav Petkov 已提交
74 75

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

78 79 80
tmon: FORCE
	$(call descend,thermal/$@)

81 82 83
freefall: FORCE
	$(call descend,laptop/$@)

K
Kamal Mostafa 已提交
84 85 86 87 88
all: acpi cgroup cpupower hv firewire lguest \
		perf selftests turbostat usb \
		virtio vm net x86_energy_perf_policy \
		tmon freefall

89 90 91
acpi_install:
	$(call descend,power/$(@:_install=),install)

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

95
cgroup_install firewire_install hv_install lguest_install perf_install usb_install virtio_install vm_install net_install:
96
	$(call descend,$(@:_install=),install)
B
Borislav Petkov 已提交
97 98

selftests_install:
99
	$(call descend,testing/$(@:_install=),install)
B
Borislav Petkov 已提交
100 101

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

104 105 106
tmon_install:
	$(call descend,thermal/$(@:_install=),install)

107 108 109
freefall_install:
	$(call descend,laptop/$(@:_install=),install)

110
install: acpi_install cgroup_install cpupower_install hv_install firewire_install lguest_install \
111
		perf_install selftests_install turbostat_install usb_install \
112
		virtio_install vm_install net_install x86_energy_perf_policy_install \
113
		tmon_install freefall_install
B
Borislav Petkov 已提交
114

115 116 117
acpi_clean:
	$(call descend,power/acpi,clean)

B
Borislav Petkov 已提交
118
cpupower_clean:
119
	$(call descend,power/cpupower,clean)
B
Borislav Petkov 已提交
120

121
cgroup_clean hv_clean firewire_clean lguest_clean usb_clean virtio_clean vm_clean net_clean iio_clean:
122 123
	$(call descend,$(@:_clean=),clean)

124 125 126
liblockdep_clean:
	$(call descend,lib/lockdep,clean)

127
libapi_clean:
128
	$(call descend,lib/api,clean)
129

130
perf_clean:
131
	$(call descend,$(@:_clean=),clean)
B
Borislav Petkov 已提交
132 133

selftests_clean:
134
	$(call descend,testing/$(@:_clean=),clean)
B
Borislav Petkov 已提交
135 136

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

139 140 141
tmon_clean:
	$(call descend,thermal/tmon,clean)

142 143 144
freefall_clean:
	$(call descend,laptop/freefall,clean)

145
clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \
146
		perf_clean selftests_clean turbostat_clean usb_clean virtio_clean \
147 148
		vm_clean net_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
		freefall_clean
B
Borislav Petkov 已提交
149 150

.PHONY: FORCE