perf tools: Move PERF-VERSION-FILE target into rules area
[GitHub/LineageOS/android_kernel_motorola_exynos9610.git] / tools / perf / Makefile.perf
CommitLineData
bd69cc28
IM
1include ../scripts/Makefile.include
2
3# The default target of this Makefile is...
4all:
5
ca70c24f 6include ../scripts/utilities.mak
bd69cc28
IM
7
8# Define V to have a more verbose compile.
9#
0695e57b
JO
10# Define VF to have a more verbose feature check output.
11#
bd69cc28
IM
12# Define O to save output files in a separate directory.
13#
14# Define ARCH as name of target architecture if you want cross-builds.
15#
16# Define CROSS_COMPILE as prefix name of compiler if you want cross-builds.
17#
18# Define NO_LIBPERL to disable perl script extension.
19#
20# Define NO_LIBPYTHON to disable python script extension.
21#
22# Define PYTHON to point to the python binary if the default
23# `python' is not correct; for example: PYTHON=python2
24#
25# Define PYTHON_CONFIG to point to the python-config binary if
26# the default `$(PYTHON)-config' is not correct.
27#
28# Define ASCIIDOC8 if you want to format documentation with AsciiDoc 8
29#
30# Define DOCBOOK_XSL_172 if you want to format man pages with DocBook XSL v1.72.
31#
32# Define LDFLAGS=-static to build a static binary.
33#
34# Define EXTRA_CFLAGS=-m64 or EXTRA_CFLAGS=-m32 as appropriate for cross-builds.
35#
36# Define NO_DWARF if you do not want debug-info analysis feature at all.
37#
38# Define WERROR=0 to disable treating any warnings as errors.
39#
40# Define NO_NEWT if you do not want TUI support. (deprecated)
41#
42# Define NO_SLANG if you do not want TUI support.
43#
44# Define NO_GTK2 if you do not want GTK+ GUI support.
45#
46# Define NO_DEMANGLE if you do not want C++ symbol demangling.
47#
48# Define NO_LIBELF if you do not want libelf dependency (e.g. cross-builds)
49#
50# Define NO_LIBUNWIND if you do not want libunwind dependency for dwarf
51# backtrace post unwind.
52#
53# Define NO_BACKTRACE if you do not want stack backtrace debug feature
54#
55# Define NO_LIBNUMA if you do not want numa perf benchmark
56#
57# Define NO_LIBAUDIT if you do not want libaudit support
58#
59# Define NO_LIBBIONIC if you do not want bionic support
5ea84154 60#
8ee46460
SE
61# Define NO_LIBCRYPTO if you do not want libcrypto (openssl) support
62# used for generating build-ids for ELFs generated by jitdump.
63#
5ea84154
JO
64# Define NO_LIBDW_DWARF_UNWIND if you do not want libdw support
65# for dwarf backtrace post unwind.
e477f3f0
AH
66#
67# Define NO_PERF_READ_VDSO32 if you do not want to build perf-read-vdso32
68# for reading the 32-bit compatibility VDSO in 64-bit mode
69#
70# Define NO_PERF_READ_VDSOX32 if you do not want to build perf-read-vdsox32
71# for reading the x32 mode 32-bit compatibility VDSO in 64-bit mode
e92ce12e
NK
72#
73# Define NO_ZLIB if you do not want to support compressed kernel modules
53d0a573 74#
6ab2b762 75# Define LIBBABELTRACE if you DO want libbabeltrace support
53d0a573 76# for CTF data format.
80a32e5b
JO
77#
78# Define NO_LZMA if you do not want to support compressed (xz) kernel modules
e31f0d01
AH
79#
80# Define NO_AUXTRACE if you do not want AUX area tracing support
ed63f34c
WN
81#
82# Define NO_LIBBPF if you do not want BPF support
96b9e70b 83#
e26e63be
MH
84# Define NO_SDT if you do not want to define SDT event in perf tools,
85# note that it doesn't disable SDT scanning support.
86#
96b9e70b
JO
87# Define FEATURES_DUMP to provide features detection dump file
88# and bypass the feature detection
d4dfdf00
JO
89#
90# Define NO_JVMTI if you do not want jvmti agent built
d58ac0bf
WN
91#
92# Define LIBCLANGLLVM if you DO want builtin clang and llvm support.
93# When selected, pass LLVM_CONFIG=/path/to/llvm-config to `make' if
94# llvm-config is not in $PATH.
5ea84154 95
237fae79
AH
96# As per kernel Makefile, avoid funny character set dependencies
97unexport LC_ALL
98LC_COLLATE=C
99LC_NUMERIC=C
100export LC_COLLATE LC_NUMERIC
101
bd69cc28
IM
102ifeq ($(srctree),)
103srctree := $(patsubst %/,%,$(dir $(shell pwd)))
104srctree := $(patsubst %/,%,$(dir $(srctree)))
105#$(info Determined 'srctree' to be $(srctree))
106endif
107
108ifneq ($(objtree),)
109#$(info Determined 'objtree' to be $(objtree))
110endif
111
112ifneq ($(OUTPUT),)
113#$(info Determined 'OUTPUT' to be $(OUTPUT))
9352aaba
JO
114# Adding $(OUTPUT) as a directory to look for source files,
115# because use generated output files as sources dependency
116# for flex/bison parsers.
117VPATH += $(OUTPUT)
118export VPATH
bd69cc28
IM
119endif
120
ceed252f
JO
121ifeq ($(V),1)
122 Q =
123else
124 Q = @
125endif
126
6dd280cd
JO
127# Do not use make's built-in rules
128# (this improves performance and avoids hard-to-debug behaviour);
129MAKEFLAGS += -r
130
3c71ba3f
AB
131# Makefiles suck: This macro sets a default value of $(2) for the
132# variable named by $(1), unless the variable has been set by
133# environment or command line. This is necessary for CC and AR
134# because make sets default values, so the simpler ?= approach
135# won't work as expected.
136define allow-override
137 $(if $(or $(findstring environment,$(origin $(1))),\
138 $(findstring command line,$(origin $(1)))),,\
139 $(eval $(1) = $(2)))
140endef
141
142# Allow setting CC and AR and LD, or setting CROSS_COMPILE as a prefix.
143$(call allow-override,CC,$(CROSS_COMPILE)gcc)
144$(call allow-override,AR,$(CROSS_COMPILE)ar)
145$(call allow-override,LD,$(CROSS_COMPILE)ld)
d58ac0bf 146$(call allow-override,CXX,$(CROSS_COMPILE)g++)
3c71ba3f 147
37b4e202
ZLK
148LD += $(EXTRA_LDFLAGS)
149
80eeb67f
AK
150HOSTCC ?= gcc
151HOSTLD ?= ld
152HOSTAR ?= ar
153
a8a5cd8b 154PKG_CONFIG = $(CROSS_COMPILE)pkg-config
d58ac0bf 155LLVM_CONFIG ?= llvm-config
bd69cc28
IM
156
157RM = rm -f
b52bc234 158LN = ln -f
bd69cc28
IM
159MKDIR = mkdir
160FIND = find
161INSTALL = install
162FLEX = flex
163BISON = bison
164STRIP = strip
237fae79 165AWK = awk
bd69cc28 166
4b6ab94e 167LIB_DIR = $(srctree)/tools/lib/api/
bd69cc28 168TRACE_EVENT_DIR = $(srctree)/tools/lib/traceevent/
4b6ab94e
JP
169BPF_DIR = $(srctree)/tools/lib/bpf/
170SUBCMD_DIR = $(srctree)/tools/lib/subcmd/
bd69cc28 171
4842576c 172# include Makefile.config by default and rule out
bd69cc28
IM
173# non-config cases
174config := 1
175
d4dcadec 176NON_CONFIG_TARGETS := clean TAGS tags cscope help install-doc install-man install-html install-info install-pdf doc man html info pdf
bd69cc28
IM
177
178ifdef MAKECMDGOALS
179ifeq ($(filter-out $(NON_CONFIG_TARGETS),$(MAKECMDGOALS)),)
180 config := 0
181endif
182endif
183
c053a150
WN
184# Set FEATURE_TESTS to 'all' so all possible feature checkers are executed.
185# Without this setting the output feature dump file misses some features, for
186# example, liberty. Select all checkers so we won't get an incomplete feature
187# dump file.
bd69cc28 188ifeq ($(config),1)
c053a150
WN
189ifdef MAKECMDGOALS
190ifeq ($(filter feature-dump,$(MAKECMDGOALS)),feature-dump)
191FEATURE_TESTS := all
192endif
193endif
4842576c 194include Makefile.config
bd69cc28
IM
195endif
196
1b700c99
ACM
197ifeq ($(config),0)
198include $(srctree)/tools/scripts/Makefile.arch
199-include arch/$(ARCH)/Makefile
200endif
201
96b9e70b
JO
202# The FEATURE_DUMP_EXPORT holds location of the actual
203# FEATURE_DUMP file to be used to bypass feature detection
204# (for bpf or any other subproject)
205ifeq ($(FEATURES_DUMP),)
206FEATURE_DUMP_EXPORT := $(realpath $(OUTPUT)FEATURE-DUMP)
207else
208FEATURE_DUMP_EXPORT := $(FEATURES_DUMP)
209endif
210
3d7c0144 211export prefix bindir sharedir sysconfdir DESTDIR
bd69cc28
IM
212
213# sparse is architecture-neutral, which means that we need to tell it
214# explicitly what architecture to check for. Fix this up for yours..
215SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
216
217# Guard against environment variables
bd69cc28
IM
218PYRF_OBJS =
219SCRIPT_SH =
220
221SCRIPT_SH += perf-archive.sh
c501e90b 222SCRIPT_SH += perf-with-kcore.sh
bd69cc28
IM
223
224grep-libs = $(filter -l%,$(1))
225strip-libs = $(filter-out -l%,$(1))
226
227ifneq ($(OUTPUT),)
228 TE_PATH=$(OUTPUT)
ed63f34c 229 BPF_PATH=$(OUTPUT)
4b6ab94e 230 SUBCMD_PATH=$(OUTPUT)
bd69cc28 231ifneq ($(subdir),)
212e984a 232 API_PATH=$(OUTPUT)/../lib/api/
bd69cc28 233else
212e984a 234 API_PATH=$(OUTPUT)
bd69cc28
IM
235endif
236else
237 TE_PATH=$(TRACE_EVENT_DIR)
212e984a 238 API_PATH=$(LIB_DIR)
ed63f34c 239 BPF_PATH=$(BPF_DIR)
4b6ab94e 240 SUBCMD_PATH=$(SUBCMD_DIR)
bd69cc28
IM
241endif
242
243LIBTRACEEVENT = $(TE_PATH)libtraceevent.a
244export LIBTRACEEVENT
245
e3d09ec8 246LIBTRACEEVENT_DYNAMIC_LIST = $(TE_PATH)libtraceevent-dynamic-list
5d618324 247LIBTRACEEVENT_DYNAMIC_LIST_LDFLAGS = -Xlinker --dynamic-list=$(LIBTRACEEVENT_DYNAMIC_LIST)
e3d09ec8 248
212e984a 249LIBAPI = $(API_PATH)libapi.a
285a8f24 250export LIBAPI
bd69cc28 251
ed63f34c
WN
252LIBBPF = $(BPF_PATH)libbpf.a
253
4b6ab94e
JP
254LIBSUBCMD = $(SUBCMD_PATH)libsubcmd.a
255
bd69cc28
IM
256# python extension build directories
257PYTHON_EXTBUILD := $(OUTPUT)python_ext_build/
258PYTHON_EXTBUILD_LIB := $(PYTHON_EXTBUILD)lib/
259PYTHON_EXTBUILD_TMP := $(PYTHON_EXTBUILD)tmp/
260export PYTHON_EXTBUILD_LIB PYTHON_EXTBUILD_TMP
261
8ec19c0e 262python-clean := $(call QUIET_CLEAN, python) $(RM) -r $(PYTHON_EXTBUILD) $(OUTPUT)python/perf.so
bd69cc28
IM
263
264PYTHON_EXT_SRCS := $(shell grep -v ^\# util/python-ext-sources)
285a8f24 265PYTHON_EXT_DEPS := util/python-ext-sources util/setup.py $(LIBTRACEEVENT) $(LIBAPI)
bd69cc28 266
bd69cc28
IM
267SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH))
268
bd69cc28
IM
269PROGRAMS += $(OUTPUT)perf
270
e477f3f0
AH
271ifndef NO_PERF_READ_VDSO32
272PROGRAMS += $(OUTPUT)perf-read-vdso32
273endif
274
275ifndef NO_PERF_READ_VDSOX32
276PROGRAMS += $(OUTPUT)perf-read-vdsox32
277endif
278
d4dfdf00
JO
279LIBJVMTI = libperf-jvmti.so
280
281ifndef NO_JVMTI
282PROGRAMS += $(OUTPUT)$(LIBJVMTI)
283endif
284
bd69cc28
IM
285# what 'all' will build and 'install' will install, in perfexecdir
286ALL_PROGRAMS = $(PROGRAMS) $(SCRIPTS)
287
288# what 'all' will build but not install in perfexecdir
289OTHER_PROGRAMS = $(OUTPUT)perf
290
291# Set paths to tools early so that they can be used for version tests.
292ifndef SHELL_PATH
293 SHELL_PATH = /bin/sh
294endif
295ifndef PERL_PATH
296 PERL_PATH = /usr/bin/perl
297endif
298
299export PERL_PATH
300
bd69cc28
IM
301LIB_FILE=$(OUTPUT)libperf.a
302
4b6ab94e 303PERFLIBS = $(LIB_FILE) $(LIBAPI) $(LIBTRACEEVENT) $(LIBSUBCMD)
ed63f34c
WN
304ifndef NO_LIBBPF
305 PERFLIBS += $(LIBBPF)
306endif
bd69cc28
IM
307
308# We choose to avoid "if .. else if .. else .. endif endif"
309# because maintaining the nesting to match is a pain. If
310# we had "elif" things would have been much nicer...
311
bd69cc28
IM
312ifneq ($(OUTPUT),)
313 CFLAGS += -I$(OUTPUT)
314endif
315
bd69cc28 316ifndef NO_GTK2
fc67297b 317 ALL_PROGRAMS += $(OUTPUT)libperf-gtk.so
88aeea06 318 GTK_IN := $(OUTPUT)gtk-in.o
bd69cc28
IM
319endif
320
bd69cc28
IM
321ifdef ASCIIDOC8
322 export ASCIIDOC8
323endif
324
325LIBS = -Wl,--whole-archive $(PERFLIBS) -Wl,--no-whole-archive -Wl,--start-group $(EXTLIBS) -Wl,--end-group
326
d58ac0bf
WN
327ifeq ($(USE_CLANG), 1)
328 CLANGLIBS_LIST = AST Basic CodeGen Driver Frontend Lex Tooling Edit Sema Analysis Parse Serialization
329 LIBCLANG = $(foreach l,$(CLANGLIBS_LIST),$(wildcard $(shell $(LLVM_CONFIG) --libdir)/libclang$(l).a))
330 LIBS += -Wl,--start-group $(LIBCLANG) -Wl,--end-group
331endif
332
333ifeq ($(USE_LLVM), 1)
334 LIBLLVM = $(shell $(LLVM_CONFIG) --libs all) $(shell $(LLVM_CONFIG) --system-libs)
335 LIBS += -L$(shell $(LLVM_CONFIG) --libdir) $(LIBLLVM)
336endif
337
338ifeq ($(USE_CXX), 1)
339 LIBS += -lstdc++
340endif
341
bd69cc28
IM
342export INSTALL SHELL_PATH
343
344### Build rules
345
346SHELL = $(SHELL_PATH)
347
348all: shell_compatibility_test $(ALL_PROGRAMS) $(LANG_BINDINGS) $(OTHER_PROGRAMS)
349
0b4d4b07
JO
350$(OUTPUT)python/perf.so: $(PYTHON_EXT_SRCS) $(PYTHON_EXT_DEPS) $(LIBTRACEEVENT_DYNAMIC_LIST)
351 $(QUIET_GEN)LDSHARED="$(CC) -pthread -shared" \
352 CFLAGS='$(CFLAGS)' LDFLAGS='$(LDFLAGS) $(LIBTRACEEVENT_DYNAMIC_LIST_LDFLAGS)' \
353 $(PYTHON_WORD) util/setup.py \
354 --quiet build_ext; \
355 mkdir -p $(OUTPUT)python && \
356 cp $(PYTHON_EXTBUILD_LIB)perf.so $(OUTPUT)python/
357
bd69cc28 358please_set_SHELL_PATH_to_a_more_modern_shell:
ceed252f 359 $(Q)$$(:)
bd69cc28
IM
360
361shell_compatibility_test: please_set_SHELL_PATH_to_a_more_modern_shell
362
363strip: $(PROGRAMS) $(OUTPUT)perf
364 $(STRIP) $(STRIP_OPTS) $(PROGRAMS) $(OUTPUT)perf
365
72965b87
JO
366PERF_IN := $(OUTPUT)perf-in.o
367
d58ac0bf 368export srctree OUTPUT RM CC CXX LD AR CFLAGS CXXFLAGS V BISON FLEX AWK
80eeb67f 369export HOSTCC HOSTLD HOSTAR
ab6201d0 370include $(srctree)/tools/build/Makefile.include
72965b87 371
80eeb67f
AK
372JEVENTS := $(OUTPUT)pmu-events/jevents
373JEVENTS_IN := $(OUTPUT)pmu-events/jevents-in.o
374
375PMU_EVENTS_IN := $(OUTPUT)pmu-events/pmu-events-in.o
376
377export JEVENTS
378
379build := -f $(srctree)/tools/build/Makefile.build dir=. obj
380
324c824a 381$(PERF_IN): prepare FORCE
c4b6014e
ACM
382 @(test -f ../../include/uapi/linux/perf_event.h && ( \
383 (diff -B ../include/uapi/linux/perf_event.h ../../include/uapi/linux/perf_event.h >/dev/null) \
384 || echo "Warning: tools/include/uapi/linux/perf_event.h differs from kernel" >&2 )) || true
ae3c14a0
ACM
385 @(test -f ../../include/linux/hash.h && ( \
386 (diff -B ../include/linux/hash.h ../../include/linux/hash.h >/dev/null) \
387 || echo "Warning: tools/include/linux/hash.h differs from kernel" >&2 )) || true
4998a122
ACM
388 @(test -f ../../include/uapi/linux/hw_breakpoint.h && ( \
389 (diff -B ../include/uapi/linux/hw_breakpoint.h ../../include/uapi/linux/hw_breakpoint.h >/dev/null) \
390 || echo "Warning: tools/include/uapi/linux/hw_breakpoint.h differs from kernel" >&2 )) || true
7d7d1bf1
ACM
391 @(test -f ../../arch/x86/include/asm/disabled-features.h && ( \
392 (diff -B ../arch/x86/include/asm/disabled-features.h ../../arch/x86/include/asm/disabled-features.h >/dev/null) \
393 || echo "Warning: tools/arch/x86/include/asm/disabled-features.h differs from kernel" >&2 )) || true
394 @(test -f ../../arch/x86/include/asm/required-features.h && ( \
395 (diff -B ../arch/x86/include/asm/required-features.h ../../arch/x86/include/asm/required-features.h >/dev/null) \
396 || echo "Warning: tools/arch/x86/include/asm/required-features.h differs from kernel" >&2 )) || true
397 @(test -f ../../arch/x86/include/asm/cpufeatures.h && ( \
398 (diff -B ../arch/x86/include/asm/cpufeatures.h ../../arch/x86/include/asm/cpufeatures.h >/dev/null) \
399 || echo "Warning: tools/arch/x86/include/asm/cpufeatures.h differs from kernel" >&2 )) || true
400 @(test -f ../../arch/x86/lib/memcpy_64.S && ( \
e0c47582 401 (diff -B -I "^EXPORT_SYMBOL" -I "^#include <asm/export.h>" ../arch/x86/lib/memcpy_64.S ../../arch/x86/lib/memcpy_64.S >/dev/null) \
7d7d1bf1
ACM
402 || echo "Warning: tools/arch/x86/lib/memcpy_64.S differs from kernel" >&2 )) || true
403 @(test -f ../../arch/x86/lib/memset_64.S && ( \
e0c47582 404 (diff -B -I "^EXPORT_SYMBOL" -I "^#include <asm/export.h>" ../arch/x86/lib/memset_64.S ../../arch/x86/lib/memset_64.S >/dev/null) \
7d7d1bf1 405 || echo "Warning: tools/arch/x86/lib/memset_64.S differs from kernel" >&2 )) || true
12f02033
ACM
406 @(test -f ../../arch/arm/include/uapi/asm/perf_regs.h && ( \
407 (diff -B ../arch/arm/include/uapi/asm/perf_regs.h ../../arch/arm/include/uapi/asm/perf_regs.h >/dev/null) \
408 || echo "Warning: tools/arch/arm/include/uapi/asm/perf_regs.h differs from kernel" >&2 )) || true
409 @(test -f ../../arch/arm64/include/uapi/asm/perf_regs.h && ( \
410 (diff -B ../arch/arm64/include/uapi/asm/perf_regs.h ../../arch/arm64/include/uapi/asm/perf_regs.h >/dev/null) \
411 || echo "Warning: tools/arch/arm64/include/uapi/asm/perf_regs.h differs from kernel" >&2 )) || true
412 @(test -f ../../arch/powerpc/include/uapi/asm/perf_regs.h && ( \
413 (diff -B ../arch/powerpc/include/uapi/asm/perf_regs.h ../../arch/powerpc/include/uapi/asm/perf_regs.h >/dev/null) \
414 || echo "Warning: tools/arch/powerpc/include/uapi/asm/perf_regs.h differs from kernel" >&2 )) || true
415 @(test -f ../../arch/x86/include/uapi/asm/perf_regs.h && ( \
416 (diff -B ../arch/x86/include/uapi/asm/perf_regs.h ../../arch/x86/include/uapi/asm/perf_regs.h >/dev/null) \
417 || echo "Warning: tools/arch/x86/include/uapi/asm/perf_regs.h differs from kernel" >&2 )) || true
dd7bd109
ACM
418 @(test -f ../../arch/x86/include/uapi/asm/kvm.h && ( \
419 (diff -B ../arch/x86/include/uapi/asm/kvm.h ../../arch/x86/include/uapi/asm/kvm.h >/dev/null) \
420 || echo "Warning: tools/arch/x86/include/uapi/asm/kvm.h differs from kernel" >&2 )) || true
421 @(test -f ../../arch/x86/include/uapi/asm/kvm_perf.h && ( \
422 (diff -B ../arch/x86/include/uapi/asm/kvm_perf.h ../../arch/x86/include/uapi/asm/kvm_perf.h >/dev/null) \
423 || echo "Warning: tools/arch/x86/include/uapi/asm/kvm_perf.h differs from kernel" >&2 )) || true
424 @(test -f ../../arch/x86/include/uapi/asm/svm.h && ( \
425 (diff -B ../arch/x86/include/uapi/asm/svm.h ../../arch/x86/include/uapi/asm/svm.h >/dev/null) \
426 || echo "Warning: tools/arch/x86/include/uapi/asm/svm.h differs from kernel" >&2 )) || true
427 @(test -f ../../arch/x86/include/uapi/asm/vmx.h && ( \
428 (diff -B ../arch/x86/include/uapi/asm/vmx.h ../../arch/x86/include/uapi/asm/vmx.h >/dev/null) \
429 || echo "Warning: tools/arch/x86/include/uapi/asm/vmx.h differs from kernel" >&2 )) || true
430 @(test -f ../../arch/powerpc/include/uapi/asm/kvm.h && ( \
431 (diff -B ../arch/powerpc/include/uapi/asm/kvm.h ../../arch/powerpc/include/uapi/asm/kvm.h >/dev/null) \
432 || echo "Warning: tools/arch/powerpc/include/uapi/asm/kvm.h differs from kernel" >&2 )) || true
433 @(test -f ../../arch/s390/include/uapi/asm/kvm.h && ( \
434 (diff -B ../arch/s390/include/uapi/asm/kvm.h ../../arch/s390/include/uapi/asm/kvm.h >/dev/null) \
435 || echo "Warning: tools/arch/s390/include/uapi/asm/kvm.h differs from kernel" >&2 )) || true
436 @(test -f ../../arch/s390/include/uapi/asm/kvm_perf.h && ( \
437 (diff -B ../arch/s390/include/uapi/asm/kvm_perf.h ../../arch/s390/include/uapi/asm/kvm_perf.h >/dev/null) \
438 || echo "Warning: tools/arch/s390/include/uapi/asm/kvm_perf.h differs from kernel" >&2 )) || true
439 @(test -f ../../arch/s390/include/uapi/asm/sie.h && ( \
440 (diff -B ../arch/s390/include/uapi/asm/sie.h ../../arch/s390/include/uapi/asm/sie.h >/dev/null) \
441 || echo "Warning: tools/arch/s390/include/uapi/asm/sie.h differs from kernel" >&2 )) || true
442 @(test -f ../../arch/arm/include/uapi/asm/kvm.h && ( \
443 (diff -B ../arch/arm/include/uapi/asm/kvm.h ../../arch/arm/include/uapi/asm/kvm.h >/dev/null) \
444 || echo "Warning: tools/arch/arm/include/uapi/asm/kvm.h differs from kernel" >&2 )) || true
445 @(test -f ../../arch/arm64/include/uapi/asm/kvm.h && ( \
446 (diff -B ../arch/arm64/include/uapi/asm/kvm.h ../../arch/arm64/include/uapi/asm/kvm.h >/dev/null) \
447 || echo "Warning: tools/arch/arm64/include/uapi/asm/kvm.h differs from kernel" >&2 )) || true
de1e17b1
ACM
448 @(test -f ../../include/asm-generic/bitops/arch_hweight.h && ( \
449 (diff -B ../include/asm-generic/bitops/arch_hweight.h ../../include/asm-generic/bitops/arch_hweight.h >/dev/null) \
450 || echo "Warning: tools/include/asm-generic/bitops/arch_hweight.h differs from kernel" >&2 )) || true
451 @(test -f ../../include/asm-generic/bitops/const_hweight.h && ( \
452 (diff -B ../include/asm-generic/bitops/const_hweight.h ../../include/asm-generic/bitops/const_hweight.h >/dev/null) \
453 || echo "Warning: tools/include/asm-generic/bitops/const_hweight.h differs from kernel" >&2 )) || true
454 @(test -f ../../include/asm-generic/bitops/__fls.h && ( \
455 (diff -B ../include/asm-generic/bitops/__fls.h ../../include/asm-generic/bitops/__fls.h >/dev/null) \
456 || echo "Warning: tools/include/asm-generic/bitops/__fls.h differs from kernel" >&2 )) || true
457 @(test -f ../../include/asm-generic/bitops/fls.h && ( \
458 (diff -B ../include/asm-generic/bitops/fls.h ../../include/asm-generic/bitops/fls.h >/dev/null) \
459 || echo "Warning: tools/include/asm-generic/bitops/fls.h differs from kernel" >&2 )) || true
460 @(test -f ../../include/asm-generic/bitops/fls64.h && ( \
461 (diff -B ../include/asm-generic/bitops/fls64.h ../../include/asm-generic/bitops/fls64.h >/dev/null) \
462 || echo "Warning: tools/include/asm-generic/bitops/fls64.h differs from kernel" >&2 )) || true
39ff5263
MP
463 @(test -f ../../include/linux/coresight-pmu.h && ( \
464 (diff -B ../include/linux/coresight-pmu.h ../../include/linux/coresight-pmu.h >/dev/null) \
465 || echo "Warning: tools/include/linux/coresight-pmu.h differs from kernel" >&2 )) || true
0a4a7e43
WN
466 @(test -f ../../include/uapi/asm-generic/mman-common.h && ( \
467 (diff -B ../include/uapi/asm-generic/mman-common.h ../../include/uapi/asm-generic/mman-common.h >/dev/null) \
468 || echo "Warning: tools/include/uapi/asm-generic/mman-common.h differs from kernel" >&2 )) || true
469 @(test -f ../../include/uapi/asm-generic/mman.h && ( \
470 (diff -B -I "^#include <\(uapi/\)*asm-generic/mman-common.h>$$" ../include/uapi/asm-generic/mman.h ../../include/uapi/asm-generic/mman.h >/dev/null) \
471 || echo "Warning: tools/include/uapi/asm-generic/mman.h differs from kernel" >&2 )) || true
472 @(test -f ../../include/uapi/linux/mman.h && ( \
473 (diff -B -I "^#include <\(uapi/\)*asm/mman.h>$$" ../include/uapi/linux/mman.h ../../include/uapi/linux/mman.h >/dev/null) \
474 || echo "Warning: tools/include/uapi/linux/mman.h differs from kernel" >&2 )) || true
ceed252f 475 $(Q)$(MAKE) $(build)=perf
72965b87 476
80eeb67f
AK
477$(JEVENTS_IN): FORCE
478 $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=pmu-events obj=jevents
479
480$(JEVENTS): $(JEVENTS_IN)
481 $(QUIET_LINK)$(HOSTCC) $(JEVENTS_IN) -o $@
482
483$(PMU_EVENTS_IN): $(JEVENTS) FORCE
484 $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=pmu-events obj=pmu-events
485
486$(OUTPUT)perf: $(PERFLIBS) $(PERF_IN) $(PMU_EVENTS_IN) $(LIBTRACEEVENT_DYNAMIC_LIST)
5d618324 487 $(QUIET_LINK)$(CC) $(CFLAGS) $(LDFLAGS) $(LIBTRACEEVENT_DYNAMIC_LIST_LDFLAGS) \
80eeb67f 488 $(PERF_IN) $(PMU_EVENTS_IN) $(LIBS) -o $@
bd69cc28 489
7c422f55 490$(GTK_IN): fixdep FORCE
ceed252f 491 $(Q)$(MAKE) $(build)=gtk
fc67297b 492
88aeea06 493$(OUTPUT)libperf-gtk.so: $(GTK_IN) $(PERFLIBS)
e27a08f5 494 $(QUIET_LINK)$(CC) -o $@ -shared $(LDFLAGS) $(filter %.o,$^) $(GTK_LIBS)
fc67297b 495
bd69cc28
IM
496$(OUTPUT)common-cmds.h: util/generate-cmdlist.sh command-list.txt
497
498$(OUTPUT)common-cmds.h: $(wildcard Documentation/perf-*.txt)
499 $(QUIET_GEN). util/generate-cmdlist.sh > $@+ && mv $@+ $@
500
501$(SCRIPTS) : % : %.sh
502 $(QUIET_GEN)$(INSTALL) '$@.sh' '$(OUTPUT)$@'
503
16e2ef4e
JO
504$(OUTPUT)PERF-VERSION-FILE: ../../.git/HEAD
505 $(Q)$(SHELL_PATH) util/PERF-VERSION-GEN $(OUTPUT)
506 $(Q)touch $(OUTPUT)PERF-VERSION-FILE
507
bd69cc28 508# These can record PERF_VERSION
cb4e67fd 509perf.spec $(SCRIPTS) \
bd69cc28
IM
510 : $(OUTPUT)PERF-VERSION-FILE
511
512.SUFFIXES:
1f7c645a
IM
513
514#
515# If a target does not match any of the later rules then prefix it by $(OUTPUT)
516# This makes targets like 'make O=/tmp/perf perf.o' work in a natural way.
517#
518ifneq ($(OUTPUT),)
519%.o: $(OUTPUT)%.o
520 @echo " # Redirected target $@ => $(OUTPUT)$@"
80eeb67f
AK
521pmu-events/%.o: $(OUTPUT)pmu-events/%.o
522 @echo " # Redirected target $@ => $(OUTPUT)$@"
1f7c645a 523util/%.o: $(OUTPUT)util/%.o
cee972c0 524 @echo " # Redirected target $@ => $(OUTPUT)$@"
1f7c645a 525bench/%.o: $(OUTPUT)bench/%.o
cee972c0 526 @echo " # Redirected target $@ => $(OUTPUT)$@"
1f7c645a 527tests/%.o: $(OUTPUT)tests/%.o
cee972c0 528 @echo " # Redirected target $@ => $(OUTPUT)$@"
1f7c645a 529endif
bd69cc28
IM
530
531# These two need to be here so that when O= is not used they take precedence
532# over the general rule for .o
533
1999307b
JO
534# get relative building directory (to $(OUTPUT))
535# and '.' if it's $(OUTPUT) itself
536__build-dir = $(subst $(OUTPUT),,$(dir $@))
537build-dir = $(if $(__build-dir),$(__build-dir),.)
538
1b700c99 539prepare: $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)common-cmds.h fixdep archheaders
1999307b 540
324c824a 541$(OUTPUT)%.o: %.c prepare FORCE
ceed252f 542 $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
1999307b 543
324c824a 544$(OUTPUT)%.i: %.c prepare FORCE
ceed252f 545 $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
1999307b 546
324c824a 547$(OUTPUT)%.s: %.c prepare FORCE
ceed252f 548 $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
1999307b 549
324c824a 550$(OUTPUT)%-bison.o: %.c prepare FORCE
ceed252f 551 $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
1999307b 552
324c824a 553$(OUTPUT)%-flex.o: %.c prepare FORCE
ceed252f 554 $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
1999307b 555
324c824a 556$(OUTPUT)%.o: %.S prepare FORCE
ceed252f 557 $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
1999307b 558
324c824a 559$(OUTPUT)%.i: %.S prepare FORCE
ceed252f 560 $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
bd69cc28 561
bd69cc28
IM
562$(OUTPUT)perf-%: %.o $(PERFLIBS)
563 $(QUIET_LINK)$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $(filter %.o,$^) $(LIBS)
564
e477f3f0
AH
565ifndef NO_PERF_READ_VDSO32
566$(OUTPUT)perf-read-vdso32: perf-read-vdso.c util/find-vdso-map.c
567 $(QUIET_CC)$(CC) -m32 $(filter -static,$(LDFLAGS)) -Wall -Werror -o $@ perf-read-vdso.c
568endif
569
570ifndef NO_PERF_READ_VDSOX32
571$(OUTPUT)perf-read-vdsox32: perf-read-vdso.c util/find-vdso-map.c
572 $(QUIET_CC)$(CC) -mx32 $(filter -static,$(LDFLAGS)) -Wall -Werror -o $@ perf-read-vdso.c
573endif
574
d4dfdf00
JO
575ifndef NO_JVMTI
576LIBJVMTI_IN := $(OUTPUT)jvmti/jvmti-in.o
577
578$(LIBJVMTI_IN): FORCE
579 $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=jvmti obj=jvmti
580
581$(OUTPUT)$(LIBJVMTI): $(LIBJVMTI_IN)
582 $(QUIET_LINK)$(CC) -shared -Wl,-soname -Wl,$(LIBJVMTI) -o $@ $< -lelf -lrt
583endif
584
8e499ac5 585$(patsubst perf-%,%.o,$(PROGRAMS)): $(wildcard */*.h)
bd69cc28 586
9352aaba
JO
587LIBPERF_IN := $(OUTPUT)libperf-in.o
588
1b700c99 589$(LIBPERF_IN): prepare fixdep FORCE
ceed252f 590 $(Q)$(MAKE) $(build)=libperf
9352aaba 591
8e499ac5 592$(LIB_FILE): $(LIBPERF_IN)
9352aaba 593 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(LIBPERF_IN) $(LIB_OBJS)
bd69cc28 594
3d7c0144
JO
595LIBTRACEEVENT_FLAGS += plugin_dir=$(plugindir_SQ)
596
7c422f55 597$(LIBTRACEEVENT): fixdep FORCE
e3d09ec8
HK
598 $(Q)$(MAKE) -C $(TRACE_EVENT_DIR) $(LIBTRACEEVENT_FLAGS) O=$(OUTPUT) $(OUTPUT)libtraceevent.a
599
7c422f55 600libtraceevent_plugins: fixdep FORCE
e3d09ec8
HK
601 $(Q)$(MAKE) -C $(TRACE_EVENT_DIR) $(LIBTRACEEVENT_FLAGS) O=$(OUTPUT) plugins
602
603$(LIBTRACEEVENT_DYNAMIC_LIST): libtraceevent_plugins
604 $(Q)$(MAKE) -C $(TRACE_EVENT_DIR) $(LIBTRACEEVENT_FLAGS) O=$(OUTPUT) $(OUTPUT)libtraceevent-dynamic-list
bd69cc28
IM
605
606$(LIBTRACEEVENT)-clean:
8ec19c0e 607 $(call QUIET_CLEAN, libtraceevent)
ceed252f 608 $(Q)$(MAKE) -C $(TRACE_EVENT_DIR) O=$(OUTPUT) clean >/dev/null
bd69cc28 609
67befc65 610install-traceevent-plugins: libtraceevent_plugins
ceed252f 611 $(Q)$(MAKE) -C $(TRACE_EVENT_DIR) $(LIBTRACEEVENT_FLAGS) O=$(OUTPUT) install_plugins
3d7c0144 612
7c422f55 613$(LIBAPI): fixdep FORCE
ceed252f 614 $(Q)$(MAKE) -C $(LIB_DIR) O=$(OUTPUT) $(OUTPUT)libapi.a
bd69cc28 615
285a8f24
JO
616$(LIBAPI)-clean:
617 $(call QUIET_CLEAN, libapi)
ceed252f 618 $(Q)$(MAKE) -C $(LIB_DIR) O=$(OUTPUT) clean >/dev/null
bd69cc28 619
50f1e6d0 620$(LIBBPF): fixdep FORCE
96b9e70b 621 $(Q)$(MAKE) -C $(BPF_DIR) O=$(OUTPUT) $(OUTPUT)libbpf.a FEATURES_DUMP=$(FEATURE_DUMP_EXPORT)
ed63f34c
WN
622
623$(LIBBPF)-clean:
624 $(call QUIET_CLEAN, libbpf)
625 $(Q)$(MAKE) -C $(BPF_DIR) O=$(OUTPUT) clean >/dev/null
626
4b6ab94e
JP
627$(LIBSUBCMD): fixdep FORCE
628 $(Q)$(MAKE) -C $(SUBCMD_DIR) O=$(OUTPUT) $(OUTPUT)libsubcmd.a
629
630$(LIBSUBCMD)-clean:
631 $(call QUIET_CLEAN, libsubcmd)
632 $(Q)$(MAKE) -C $(SUBCMD_DIR) O=$(OUTPUT) clean
633
bd69cc28
IM
634help:
635 @echo 'Perf make targets:'
636 @echo ' doc - make *all* documentation (see below)'
637 @echo ' man - make manpage documentation (access with man <foo>)'
638 @echo ' html - make html documentation'
639 @echo ' info - make GNU info documentation (access with info <foo>)'
640 @echo ' pdf - make pdf documentation'
641 @echo ' TAGS - use etags to make tag information for source browsing'
642 @echo ' tags - use ctags to make tag information for source browsing'
643 @echo ' cscope - use cscope to make interactive browsing database'
644 @echo ''
645 @echo 'Perf install targets:'
646 @echo ' NOTE: documentation build requires asciidoc, xmlto packages to be installed'
fc9cabea
JZ
647 @echo ' HINT: use "prefix" or "DESTDIR" to install to a particular'
648 @echo ' path like "make prefix=/usr/local install install-doc"'
bd69cc28
IM
649 @echo ' install - install compiled binaries'
650 @echo ' install-doc - install *all* documentation'
651 @echo ' install-man - install manpage documentation'
652 @echo ' install-html - install html documentation'
653 @echo ' install-info - install GNU info documentation'
654 @echo ' install-pdf - install pdf documentation'
655 @echo ''
656 @echo ' quick-install-doc - alias for quick-install-man'
657 @echo ' quick-install-man - install the documentation quickly'
658 @echo ' quick-install-html - install the html documentation quickly'
659 @echo ''
660 @echo 'Perf maintainer targets:'
661 @echo ' clean - clean all binary objects and build output'
662
663
664DOC_TARGETS := doc man html info pdf
665
666INSTALL_DOC_TARGETS := $(patsubst %,install-%,$(DOC_TARGETS)) try-install-man
667INSTALL_DOC_TARGETS += quick-install-doc quick-install-man quick-install-html
668
669# 'make doc' should call 'make -C Documentation all'
670$(DOC_TARGETS):
671 $(QUIET_SUBDIR0)Documentation $(QUIET_SUBDIR1) $(@:doc=all)
672
685c8415 673TAG_FOLDERS= . ../lib ../include
16a64336
SAS
674TAG_FILES= ../../include/uapi/linux/perf_event.h
675
bd69cc28 676TAGS:
b0815d07 677 $(QUIET_GEN)$(RM) TAGS; \
16a64336 678 $(FIND) $(TAG_FOLDERS) -name '*.[hcS]' -print | xargs etags -a $(TAG_FILES)
bd69cc28
IM
679
680tags:
b0815d07 681 $(QUIET_GEN)$(RM) tags; \
16a64336 682 $(FIND) $(TAG_FOLDERS) -name '*.[hcS]' -print | xargs ctags -a $(TAG_FILES)
bd69cc28
IM
683
684cscope:
b0815d07 685 $(QUIET_GEN)$(RM) cscope*; \
16a64336 686 $(FIND) $(TAG_FOLDERS) -name '*.[hcS]' -print | xargs cscope -b $(TAG_FILES)
bd69cc28 687
bd69cc28
IM
688### Testing rules
689
690# GNU make supports exporting all variables by "export" without parameters.
691# However, the environment gets quite big, and some programs have problems
692# with that.
693
694check: $(OUTPUT)common-cmds.h
695 if sparse; \
696 then \
697 for i in *.c */*.c; \
698 do \
699 sparse $(CFLAGS) $(SPARSE_FLAGS) $$i || exit; \
700 done; \
701 else \
702 exit 1; \
703 fi
704
705### Installation rules
706
5c319a67
JO
707ifndef NO_GTK2
708install-gtk: $(OUTPUT)libperf-gtk.so
709 $(call QUIET_INSTALL, 'GTK UI') \
710 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(libdir_SQ)'; \
711 $(INSTALL) $(OUTPUT)libperf-gtk.so '$(DESTDIR_SQ)$(libdir_SQ)'
712else
fc67297b 713install-gtk:
5c319a67 714endif
fc67297b 715
128c32ed 716install-tools: all install-gtk
8a5411e9
IM
717 $(call QUIET_INSTALL, binaries) \
718 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(bindir_SQ)'; \
719 $(INSTALL) $(OUTPUT)perf '$(DESTDIR_SQ)$(bindir_SQ)'; \
720 $(LN) '$(DESTDIR_SQ)$(bindir_SQ)/perf' '$(DESTDIR_SQ)$(bindir_SQ)/trace'
e477f3f0
AH
721ifndef NO_PERF_READ_VDSO32
722 $(call QUIET_INSTALL, perf-read-vdso32) \
723 $(INSTALL) $(OUTPUT)perf-read-vdso32 '$(DESTDIR_SQ)$(bindir_SQ)';
724endif
725ifndef NO_PERF_READ_VDSOX32
726 $(call QUIET_INSTALL, perf-read-vdsox32) \
727 $(INSTALL) $(OUTPUT)perf-read-vdsox32 '$(DESTDIR_SQ)$(bindir_SQ)';
d4dfdf00
JO
728endif
729ifndef NO_JVMTI
730 $(call QUIET_INSTALL, $(LIBJVMTI)) \
731 $(INSTALL) $(OUTPUT)$(LIBJVMTI) '$(DESTDIR_SQ)$(libdir_SQ)';
e477f3f0 732endif
8a5411e9
IM
733 $(call QUIET_INSTALL, libexec) \
734 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)'
735 $(call QUIET_INSTALL, perf-archive) \
736 $(INSTALL) $(OUTPUT)perf-archive -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)'
c501e90b
AH
737 $(call QUIET_INSTALL, perf-with-kcore) \
738 $(INSTALL) $(OUTPUT)perf-with-kcore -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)'
005438a8
ACM
739ifndef NO_LIBAUDIT
740 $(call QUIET_INSTALL, strace/groups) \
741 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(STRACE_GROUPS_INSTDIR_SQ)'; \
742 $(INSTALL) trace/strace/groups/* -t '$(DESTDIR_SQ)$(STRACE_GROUPS_INSTDIR_SQ)'
743endif
bd69cc28 744ifndef NO_LIBPERL
8a5411e9
IM
745 $(call QUIET_INSTALL, perl-scripts) \
746 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/Perf-Trace-Util/lib/Perf/Trace'; \
747 $(INSTALL) scripts/perl/Perf-Trace-Util/lib/Perf/Trace/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/Perf-Trace-Util/lib/Perf/Trace'; \
748 $(INSTALL) scripts/perl/*.pl -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl'; \
749 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/bin'; \
750 $(INSTALL) scripts/perl/bin/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/bin'
bd69cc28
IM
751endif
752ifndef NO_LIBPYTHON
8a5411e9
IM
753 $(call QUIET_INSTALL, python-scripts) \
754 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/Perf-Trace-Util/lib/Perf/Trace'; \
755 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/bin'; \
756 $(INSTALL) scripts/python/Perf-Trace-Util/lib/Perf/Trace/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/Perf-Trace-Util/lib/Perf/Trace'; \
757 $(INSTALL) scripts/python/*.py -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python'; \
758 $(INSTALL) scripts/python/bin/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/bin'
bd69cc28 759endif
a8b4c701 760 $(call QUIET_INSTALL, perf_completion-script) \
8a5411e9 761 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(sysconfdir_SQ)/bash_completion.d'; \
a8b4c701 762 $(INSTALL) perf-completion.sh '$(DESTDIR_SQ)$(sysconfdir_SQ)/bash_completion.d/perf'
14cbfbeb
NK
763 $(call QUIET_INSTALL, perf-tip) \
764 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(tip_instdir_SQ)'; \
765 $(INSTALL) Documentation/tips.txt -t '$(DESTDIR_SQ)$(tip_instdir_SQ)'
128c32ed
NN
766
767install-tests: all install-gtk
8a5411e9
IM
768 $(call QUIET_INSTALL, tests) \
769 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests'; \
770 $(INSTALL) tests/attr.py '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests'; \
771 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/attr'; \
772 $(INSTALL) tests/attr/* '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/attr'
bd69cc28 773
128c32ed
NN
774install-bin: install-tools install-tests
775
3d7c0144 776install: install-bin try-install-man install-traceevent-plugins
bd69cc28
IM
777
778install-python_ext:
779 $(PYTHON_WORD) util/setup.py --quiet install --root='/$(DESTDIR_SQ)'
780
781# 'make install-doc' should call 'make -C Documentation install'
782$(INSTALL_DOC_TARGETS):
783 $(QUIET_SUBDIR0)Documentation $(QUIET_SUBDIR1) $(@:-doc=)
784
785### Cleaning rules
786
787#
4842576c 788# This is here, not in Makefile.config, because Makefile.config does
bd69cc28
IM
789# not get included for the clean target:
790#
791config-clean:
8ec19c0e 792 $(call QUIET_CLEAN, config)
8f46dfd7 793 $(Q)$(MAKE) -C $(srctree)/tools/build/feature/ $(if $(OUTPUT),OUTPUT=$(OUTPUT)feature/,) clean >/dev/null
bd69cc28 794
1b700c99 795clean:: $(LIBTRACEEVENT)-clean $(LIBAPI)-clean $(LIBBPF)-clean $(LIBSUBCMD)-clean config-clean
8e499ac5 796 $(call QUIET_CLEAN, core-objs) $(RM) $(LIB_FILE) $(OUTPUT)perf-archive $(OUTPUT)perf-with-kcore $(LANG_BINDINGS)
8f46dfd7 797 $(Q)find $(if $(OUTPUT),$(OUTPUT),.) -name '*.o' -delete -o -name '\.*.cmd' -delete -o -name '\.*.d' -delete
64227379 798 $(Q)$(RM) $(OUTPUT).config-detected
d4dfdf00 799 $(call QUIET_CLEAN, core-progs) $(RM) $(ALL_PROGRAMS) perf perf-read-vdso32 perf-read-vdsox32 $(OUTPUT)pmu-events/jevents $(OUTPUT)$(LIBJVMTI).so
237fae79 800 $(call QUIET_CLEAN, core-gen) $(RM) *.spec *.pyc *.pyo */*.pyc */*.pyo $(OUTPUT)common-cmds.h TAGS tags cscope* $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)FEATURE-DUMP $(OUTPUT)util/*-bison* $(OUTPUT)util/*-flex* \
8f46dfd7 801 $(OUTPUT)util/intel-pt-decoder/inat-tables.c $(OUTPUT)fixdep \
80eeb67f
AK
802 $(OUTPUT)tests/llvm-src-{base,kbuild,prologue,relocation}.c \
803 $(OUTPUT)pmu-events/pmu-events.c
553873e1 804 $(QUIET_SUBDIR0)Documentation $(QUIET_SUBDIR1) clean
bd69cc28
IM
805 $(python-clean)
806
b8e52be0
JO
807#
808# To provide FEATURE-DUMP into $(FEATURE_DUMP_COPY)
809# file if defined, with no further action.
810feature-dump:
811ifdef FEATURE_DUMP_COPY
812 @cp $(OUTPUT)FEATURE-DUMP $(FEATURE_DUMP_COPY)
813 @echo "FEATURE-DUMP file copied into $(FEATURE_DUMP_COPY)"
814else
815 @echo "FEATURE-DUMP file available in $(OUTPUT)FEATURE-DUMP"
816endif
817
bd69cc28
IM
818#
819# Trick: if ../../.git does not exist - we are building out of tree for example,
820# then force version regeneration:
821#
822ifeq ($(wildcard ../../.git/HEAD),)
823 GIT-HEAD-PHONY = ../../.git/HEAD
824else
825 GIT-HEAD-PHONY =
826endif
827
72965b87
JO
828FORCE:
829
fc67297b 830.PHONY: all install clean config-clean strip install-gtk
bd69cc28 831.PHONY: shell_compatibility_test please_set_SHELL_PATH_to_a_more_modern_shell
324c824a 832.PHONY: $(GIT-HEAD-PHONY) TAGS tags cscope FORCE prepare
1b700c99 833.PHONY: libtraceevent_plugins archheaders
bd69cc28 834