perf trace: Beautify 'fspick' arguments
[linux-2.6-microblaze.git] / tools / perf / Makefile.perf
1 include ../scripts/Makefile.include
2 include ../scripts/Makefile.arch
3
4 # The default target of this Makefile is...
5 all:
6
7 include ../scripts/utilities.mak
8
9 # Define V to have a more verbose compile.
10 #
11 # Define VF to have a more verbose feature check output.
12 #
13 # Define O to save output files in a separate directory.
14 #
15 # Define ARCH as name of target architecture if you want cross-builds.
16 #
17 # Define CROSS_COMPILE as prefix name of compiler if you want cross-builds.
18 #
19 # Define NO_LIBPERL to disable perl script extension.
20 #
21 # Define NO_LIBPYTHON to disable python script extension.
22 #
23 # Define PYTHON to point to the python binary if the default
24 # `python' is not correct; for example: PYTHON=python2
25 #
26 # Define PYTHON_CONFIG to point to the python-config binary if
27 # the default `$(PYTHON)-config' is not correct.
28 #
29 # Define ASCIIDOC8 if you want to format documentation with AsciiDoc 8
30 #
31 # Define DOCBOOK_XSL_172 if you want to format man pages with DocBook XSL v1.72.
32 #
33 # Define LDFLAGS=-static to build a static binary.
34 #
35 # Define EXTRA_CFLAGS=-m64 or EXTRA_CFLAGS=-m32 as appropriate for cross-builds.
36 #
37 # Define EXCLUDE_EXTLIBS=-lmylib to exclude libmylib from the auto-generated
38 # EXTLIBS.
39 #
40 # Define EXTRA_PERFLIBS to pass extra libraries to PERFLIBS.
41 #
42 # Define NO_DWARF if you do not want debug-info analysis feature at all.
43 #
44 # Define WERROR=0 to disable treating any warnings as errors.
45 #
46 # Define NO_NEWT if you do not want TUI support. (deprecated)
47 #
48 # Define NO_SLANG if you do not want TUI support.
49 #
50 # Define NO_GTK2 if you do not want GTK+ GUI support.
51 #
52 # Define NO_DEMANGLE if you do not want C++ symbol demangling.
53 #
54 # Define NO_LIBELF if you do not want libelf dependency (e.g. cross-builds)
55 #
56 # Define NO_LIBUNWIND if you do not want libunwind dependency for dwarf
57 # backtrace post unwind.
58 #
59 # Define NO_BACKTRACE if you do not want stack backtrace debug feature
60 #
61 # Define NO_LIBNUMA if you do not want numa perf benchmark
62 #
63 # Define NO_LIBAUDIT if you do not want libaudit support
64 #
65 # Define NO_LIBBIONIC if you do not want bionic support
66 #
67 # Define NO_LIBCRYPTO if you do not want libcrypto (openssl) support
68 # used for generating build-ids for ELFs generated by jitdump.
69 #
70 # Define NO_LIBDW_DWARF_UNWIND if you do not want libdw support
71 # for dwarf backtrace post unwind.
72 #
73 # Define NO_PERF_READ_VDSO32 if you do not want to build perf-read-vdso32
74 # for reading the 32-bit compatibility VDSO in 64-bit mode
75 #
76 # Define NO_PERF_READ_VDSOX32 if you do not want to build perf-read-vdsox32
77 # for reading the x32 mode 32-bit compatibility VDSO in 64-bit mode
78 #
79 # Define NO_ZLIB if you do not want to support compressed kernel modules
80 #
81 # Define NO_LIBBABELTRACE if you do not want libbabeltrace support
82 # for CTF data format.
83 #
84 # Define NO_LZMA if you do not want to support compressed (xz) kernel modules
85 #
86 # Define NO_AUXTRACE if you do not want AUX area tracing support
87 #
88 # Define NO_LIBBPF if you do not want BPF support
89 #
90 # Define NO_SDT if you do not want to define SDT event in perf tools,
91 # note that it doesn't disable SDT scanning support.
92 #
93 # Define FEATURES_DUMP to provide features detection dump file
94 # and bypass the feature detection
95 #
96 # Define NO_JVMTI if you do not want jvmti agent built
97 #
98 # Define NO_JVMTI_CMLR (debug only) if you do not want to process CMLR
99 # data for java source lines.
100 #
101 # Define LIBCLANGLLVM if you DO want builtin clang and llvm support.
102 # When selected, pass LLVM_CONFIG=/path/to/llvm-config to `make' if
103 # llvm-config is not in $PATH.
104 #
105 # Define CORESIGHT if you DO WANT support for CoreSight trace decoding.
106 #
107 # Define NO_AIO if you do not want support of Posix AIO based trace
108 # streaming for record mode. Currently Posix AIO trace streaming is
109 # supported only when linking with glibc.
110 #
111 # Define NO_LIBZSTD if you do not want support of Zstandard based runtime
112 # trace compression in record mode.
113 #
114
115 # As per kernel Makefile, avoid funny character set dependencies
116 unexport LC_ALL
117 LC_COLLATE=C
118 LC_NUMERIC=C
119 export LC_COLLATE LC_NUMERIC
120
121 ifeq ($(srctree),)
122 srctree := $(patsubst %/,%,$(dir $(CURDIR)))
123 srctree := $(patsubst %/,%,$(dir $(srctree)))
124 #$(info Determined 'srctree' to be $(srctree))
125 endif
126
127 ifneq ($(objtree),)
128 #$(info Determined 'objtree' to be $(objtree))
129 endif
130
131 ifneq ($(OUTPUT),)
132 #$(info Determined 'OUTPUT' to be $(OUTPUT))
133 # Adding $(OUTPUT) as a directory to look for source files,
134 # because use generated output files as sources dependency
135 # for flex/bison parsers.
136 VPATH += $(OUTPUT)
137 export VPATH
138 endif
139
140 ifeq ($(V),1)
141   Q =
142 else
143   Q = @
144 endif
145
146 # Do not use make's built-in rules
147 # (this improves performance and avoids hard-to-debug behaviour);
148 MAKEFLAGS += -r
149
150 # Makefiles suck: This macro sets a default value of $(2) for the
151 # variable named by $(1), unless the variable has been set by
152 # environment or command line. This is necessary for CC and AR
153 # because make sets default values, so the simpler ?= approach
154 # won't work as expected.
155 define allow-override
156   $(if $(or $(findstring environment,$(origin $(1))),\
157             $(findstring command line,$(origin $(1)))),,\
158     $(eval $(1) = $(2)))
159 endef
160
161 LD += $(EXTRA_LDFLAGS)
162
163 HOSTCC  ?= gcc
164 HOSTLD  ?= ld
165 HOSTAR  ?= ar
166
167 PKG_CONFIG = $(CROSS_COMPILE)pkg-config
168 LLVM_CONFIG ?= llvm-config
169
170 RM      = rm -f
171 LN      = ln -f
172 MKDIR   = mkdir
173 FIND    = find
174 INSTALL = install
175 FLEX    ?= flex
176 BISON   ?= bison
177 STRIP   = strip
178 AWK     = awk
179
180 # include Makefile.config by default and rule out
181 # non-config cases
182 config := 1
183
184 NON_CONFIG_TARGETS := clean python-clean TAGS tags cscope help install-doc install-man install-html install-info install-pdf doc man html info pdf
185
186 ifdef MAKECMDGOALS
187 ifeq ($(filter-out $(NON_CONFIG_TARGETS),$(MAKECMDGOALS)),)
188   config := 0
189 endif
190 endif
191
192 # The fixdep build - we force fixdep tool to be built as
193 # the first target in the separate make session not to be
194 # disturbed by any parallel make jobs. Once fixdep is done
195 # we issue the requested build with FIXDEP=1 variable.
196 #
197 # The fixdep build is disabled for $(NON_CONFIG_TARGETS)
198 # targets, because it's not necessary.
199
200 ifdef FIXDEP
201   force_fixdep := 0
202 else
203   force_fixdep := $(config)
204 endif
205
206 export srctree OUTPUT RM CC CXX LD AR CFLAGS CXXFLAGS V BISON FLEX AWK
207 export HOSTCC HOSTLD HOSTAR
208
209 include $(srctree)/tools/build/Makefile.include
210
211 ifeq ($(force_fixdep),1)
212 goals := $(filter-out all sub-make, $(MAKECMDGOALS))
213
214 $(goals) all: sub-make
215
216 sub-make: fixdep
217         @./check-headers.sh
218         $(Q)$(MAKE) FIXDEP=1 -f Makefile.perf $(goals)
219
220 else # force_fixdep
221
222 LIB_DIR         = $(srctree)/tools/lib/api/
223 TRACE_EVENT_DIR = $(srctree)/tools/lib/traceevent/
224 BPF_DIR         = $(srctree)/tools/lib/bpf/
225 SUBCMD_DIR      = $(srctree)/tools/lib/subcmd/
226
227 # Set FEATURE_TESTS to 'all' so all possible feature checkers are executed.
228 # Without this setting the output feature dump file misses some features, for
229 # example, liberty. Select all checkers so we won't get an incomplete feature
230 # dump file.
231 ifeq ($(config),1)
232 ifdef MAKECMDGOALS
233 ifeq ($(filter feature-dump,$(MAKECMDGOALS)),feature-dump)
234 FEATURE_TESTS := all
235 endif
236 endif
237 include Makefile.config
238 endif
239
240 ifeq ($(config),0)
241 include $(srctree)/tools/scripts/Makefile.arch
242 -include arch/$(SRCARCH)/Makefile
243 endif
244
245 # The FEATURE_DUMP_EXPORT holds location of the actual
246 # FEATURE_DUMP file to be used to bypass feature detection
247 # (for bpf or any other subproject)
248 ifeq ($(FEATURES_DUMP),)
249 FEATURE_DUMP_EXPORT := $(realpath $(OUTPUT)FEATURE-DUMP)
250 else
251 FEATURE_DUMP_EXPORT := $(realpath $(FEATURES_DUMP))
252 endif
253
254 export prefix bindir sharedir sysconfdir DESTDIR
255
256 # sparse is architecture-neutral, which means that we need to tell it
257 # explicitly what architecture to check for. Fix this up for yours..
258 SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
259
260 # Guard against environment variables
261 PYRF_OBJS =
262 SCRIPT_SH =
263
264 SCRIPT_SH += perf-archive.sh
265 SCRIPT_SH += perf-with-kcore.sh
266
267 grep-libs = $(filter -l%,$(1))
268 strip-libs = $(filter-out -l%,$(1))
269
270 ifneq ($(OUTPUT),)
271   TE_PATH=$(OUTPUT)
272   BPF_PATH=$(OUTPUT)
273   SUBCMD_PATH=$(OUTPUT)
274 ifneq ($(subdir),)
275   API_PATH=$(OUTPUT)/../lib/api/
276 else
277   API_PATH=$(OUTPUT)
278 endif
279 else
280   TE_PATH=$(TRACE_EVENT_DIR)
281   API_PATH=$(LIB_DIR)
282   BPF_PATH=$(BPF_DIR)
283   SUBCMD_PATH=$(SUBCMD_DIR)
284 endif
285
286 LIBTRACEEVENT = $(TE_PATH)libtraceevent.a
287 export LIBTRACEEVENT
288
289 LIBTRACEEVENT_DYNAMIC_LIST = $(TE_PATH)libtraceevent-dynamic-list
290
291 #
292 # The static build has no dynsym table, so this does not work for
293 # static build. Looks like linker starts to scream about that now
294 # (in Fedora 26) so we need to switch it off for static build.
295 DYNAMIC_LIST_LDFLAGS               = -Xlinker --dynamic-list=$(LIBTRACEEVENT_DYNAMIC_LIST)
296 LIBTRACEEVENT_DYNAMIC_LIST_LDFLAGS = $(if $(findstring -static,$(LDFLAGS)),,$(DYNAMIC_LIST_LDFLAGS))
297
298 LIBAPI = $(API_PATH)libapi.a
299 export LIBAPI
300
301 LIBBPF = $(BPF_PATH)libbpf.a
302
303 LIBSUBCMD = $(SUBCMD_PATH)libsubcmd.a
304
305 # python extension build directories
306 PYTHON_EXTBUILD     := $(OUTPUT)python_ext_build/
307 PYTHON_EXTBUILD_LIB := $(PYTHON_EXTBUILD)lib/
308 PYTHON_EXTBUILD_TMP := $(PYTHON_EXTBUILD)tmp/
309 export PYTHON_EXTBUILD_LIB PYTHON_EXTBUILD_TMP
310
311 python-clean := $(call QUIET_CLEAN, python) $(RM) -r $(PYTHON_EXTBUILD) $(OUTPUT)python/perf*.so
312
313 PYTHON_EXT_SRCS := $(shell grep -v ^\# util/python-ext-sources)
314 PYTHON_EXT_DEPS := util/python-ext-sources util/setup.py $(LIBTRACEEVENT) $(LIBAPI)
315
316 SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH))
317
318 PROGRAMS += $(OUTPUT)perf
319
320 ifndef NO_PERF_READ_VDSO32
321 PROGRAMS += $(OUTPUT)perf-read-vdso32
322 endif
323
324 ifndef NO_PERF_READ_VDSOX32
325 PROGRAMS += $(OUTPUT)perf-read-vdsox32
326 endif
327
328 LIBJVMTI = libperf-jvmti.so
329
330 ifndef NO_JVMTI
331 PROGRAMS += $(OUTPUT)$(LIBJVMTI)
332 endif
333
334 # what 'all' will build and 'install' will install, in perfexecdir
335 ALL_PROGRAMS = $(PROGRAMS) $(SCRIPTS)
336
337 # what 'all' will build but not install in perfexecdir
338 OTHER_PROGRAMS = $(OUTPUT)perf
339
340 # Set paths to tools early so that they can be used for version tests.
341 ifndef SHELL_PATH
342   SHELL_PATH = /bin/sh
343 endif
344 ifndef PERL_PATH
345   PERL_PATH = /usr/bin/perl
346 endif
347
348 export PERL_PATH
349
350 LIBPERF_A=$(OUTPUT)libperf.a
351
352 PERFLIBS = $(LIBAPI) $(LIBTRACEEVENT) $(LIBSUBCMD)
353 ifndef NO_LIBBPF
354   PERFLIBS += $(LIBBPF)
355 endif
356
357 # We choose to avoid "if .. else if .. else .. endif endif"
358 # because maintaining the nesting to match is a pain.  If
359 # we had "elif" things would have been much nicer...
360
361 ifneq ($(OUTPUT),)
362   CFLAGS += -I$(OUTPUT)
363 endif
364
365 ifndef NO_GTK2
366   ALL_PROGRAMS += $(OUTPUT)libperf-gtk.so
367   GTK_IN := $(OUTPUT)gtk-in.o
368 endif
369
370 ifdef ASCIIDOC8
371   export ASCIIDOC8
372 endif
373
374 EXTLIBS := $(call filter-out,$(EXCLUDE_EXTLIBS),$(EXTLIBS))
375 LIBS = -Wl,--whole-archive $(PERFLIBS) $(EXTRA_PERFLIBS) -Wl,--no-whole-archive -Wl,--start-group $(EXTLIBS) -Wl,--end-group
376
377 ifeq ($(USE_CLANG), 1)
378   CLANGLIBS_LIST = AST Basic CodeGen Driver Frontend Lex Tooling Edit Sema Analysis Parse Serialization
379   CLANGLIBS_NOEXT_LIST = $(foreach l,$(CLANGLIBS_LIST),$(shell $(LLVM_CONFIG) --libdir)/libclang$(l))
380   LIBCLANG = $(foreach l,$(CLANGLIBS_NOEXT_LIST),$(wildcard $(l).a $(l).so))
381   LIBS += -Wl,--start-group $(LIBCLANG) -Wl,--end-group
382 endif
383
384 ifeq ($(USE_LLVM), 1)
385   LIBLLVM = $(shell $(LLVM_CONFIG) --libs all) $(shell $(LLVM_CONFIG) --system-libs)
386   LIBS += -L$(shell $(LLVM_CONFIG) --libdir) $(LIBLLVM)
387 endif
388
389 ifeq ($(USE_CXX), 1)
390   LIBS += -lstdc++
391 endif
392
393 export INSTALL SHELL_PATH
394
395 ### Build rules
396
397 SHELL = $(SHELL_PATH)
398
399 linux_uapi_dir := $(srctree)/tools/include/uapi/linux
400 asm_generic_uapi_dir := $(srctree)/tools/include/uapi/asm-generic
401 arch_asm_uapi_dir := $(srctree)/tools/arch/$(SRCARCH)/include/uapi/asm/
402 x86_arch_asm_uapi_dir := $(srctree)/tools/arch/x86/include/uapi/asm/
403
404 beauty_outdir := $(OUTPUT)trace/beauty/generated
405 beauty_ioctl_outdir := $(beauty_outdir)/ioctl
406 drm_ioctl_array := $(beauty_ioctl_outdir)/drm_ioctl_array.c
407 drm_hdr_dir := $(srctree)/tools/include/uapi/drm
408 drm_ioctl_tbl := $(srctree)/tools/perf/trace/beauty/drm_ioctl.sh
409
410 # Create output directory if not already present
411 _dummy := $(shell [ -d '$(beauty_ioctl_outdir)' ] || mkdir -p '$(beauty_ioctl_outdir)')
412
413 $(drm_ioctl_array): $(drm_hdr_dir)/drm.h $(drm_hdr_dir)/i915_drm.h $(drm_ioctl_tbl)
414         $(Q)$(SHELL) '$(drm_ioctl_tbl)' $(drm_hdr_dir) > $@
415
416 fadvise_advice_array := $(beauty_outdir)/fadvise_advice_array.c
417 fadvise_advice_tbl := $(srctree)/tools/perf/trace/beauty/fadvise.sh
418
419 $(fadvise_advice_array): $(linux_uapi_dir)/in.h $(fadvise_advice_tbl)
420         $(Q)$(SHELL) '$(fadvise_advice_tbl)' $(linux_uapi_dir) > $@
421
422 fspick_arrays := $(beauty_outdir)/fspick_arrays.c
423 fspick_tbls := $(srctree)/tools/perf/trace/beauty/fspick.sh
424
425 $(fspick_arrays): $(linux_uapi_dir)/fs.h $(fspick_tbls)
426         $(Q)$(SHELL) '$(fspick_tbls)' $(linux_uapi_dir) > $@
427
428 pkey_alloc_access_rights_array := $(beauty_outdir)/pkey_alloc_access_rights_array.c
429 asm_generic_hdr_dir := $(srctree)/tools/include/uapi/asm-generic/
430 pkey_alloc_access_rights_tbl := $(srctree)/tools/perf/trace/beauty/pkey_alloc_access_rights.sh
431
432 $(pkey_alloc_access_rights_array): $(asm_generic_hdr_dir)/mman-common.h $(pkey_alloc_access_rights_tbl)
433         $(Q)$(SHELL) '$(pkey_alloc_access_rights_tbl)' $(asm_generic_hdr_dir) > $@
434
435 sndrv_ctl_ioctl_array := $(beauty_ioctl_outdir)/sndrv_ctl_ioctl_array.c
436 sndrv_ctl_hdr_dir := $(srctree)/tools/include/uapi/sound
437 sndrv_ctl_ioctl_tbl := $(srctree)/tools/perf/trace/beauty/sndrv_ctl_ioctl.sh
438
439 $(sndrv_ctl_ioctl_array): $(sndrv_ctl_hdr_dir)/asound.h $(sndrv_ctl_ioctl_tbl)
440         $(Q)$(SHELL) '$(sndrv_ctl_ioctl_tbl)' $(sndrv_ctl_hdr_dir) > $@
441
442 sndrv_pcm_ioctl_array := $(beauty_ioctl_outdir)/sndrv_pcm_ioctl_array.c
443 sndrv_pcm_hdr_dir := $(srctree)/tools/include/uapi/sound
444 sndrv_pcm_ioctl_tbl := $(srctree)/tools/perf/trace/beauty/sndrv_pcm_ioctl.sh
445
446 $(sndrv_pcm_ioctl_array): $(sndrv_pcm_hdr_dir)/asound.h $(sndrv_pcm_ioctl_tbl)
447         $(Q)$(SHELL) '$(sndrv_pcm_ioctl_tbl)' $(sndrv_pcm_hdr_dir) > $@
448
449 kcmp_type_array := $(beauty_outdir)/kcmp_type_array.c
450 kcmp_hdr_dir := $(srctree)/tools/include/uapi/linux/
451 kcmp_type_tbl := $(srctree)/tools/perf/trace/beauty/kcmp_type.sh
452
453 $(kcmp_type_array): $(kcmp_hdr_dir)/kcmp.h $(kcmp_type_tbl)
454         $(Q)$(SHELL) '$(kcmp_type_tbl)' $(kcmp_hdr_dir) > $@
455
456 kvm_ioctl_array := $(beauty_ioctl_outdir)/kvm_ioctl_array.c
457 kvm_hdr_dir := $(srctree)/tools/include/uapi/linux
458 kvm_ioctl_tbl := $(srctree)/tools/perf/trace/beauty/kvm_ioctl.sh
459
460 $(kvm_ioctl_array): $(kvm_hdr_dir)/kvm.h $(kvm_ioctl_tbl)
461         $(Q)$(SHELL) '$(kvm_ioctl_tbl)' $(kvm_hdr_dir) > $@
462
463 socket_ipproto_array := $(beauty_outdir)/socket_ipproto_array.c
464 socket_ipproto_tbl := $(srctree)/tools/perf/trace/beauty/socket_ipproto.sh
465
466 $(socket_ipproto_array): $(linux_uapi_dir)/in.h $(socket_ipproto_tbl)
467         $(Q)$(SHELL) '$(socket_ipproto_tbl)' $(linux_uapi_dir) > $@
468
469 vhost_virtio_ioctl_array := $(beauty_ioctl_outdir)/vhost_virtio_ioctl_array.c
470 vhost_virtio_hdr_dir := $(srctree)/tools/include/uapi/linux
471 vhost_virtio_ioctl_tbl := $(srctree)/tools/perf/trace/beauty/vhost_virtio_ioctl.sh
472
473 $(vhost_virtio_ioctl_array): $(vhost_virtio_hdr_dir)/vhost.h $(vhost_virtio_ioctl_tbl)
474         $(Q)$(SHELL) '$(vhost_virtio_ioctl_tbl)' $(vhost_virtio_hdr_dir) > $@
475
476 perf_ioctl_array := $(beauty_ioctl_outdir)/perf_ioctl_array.c
477 perf_hdr_dir := $(srctree)/tools/include/uapi/linux
478 perf_ioctl_tbl := $(srctree)/tools/perf/trace/beauty/perf_ioctl.sh
479
480 $(perf_ioctl_array): $(perf_hdr_dir)/perf_event.h $(perf_ioctl_tbl)
481         $(Q)$(SHELL) '$(perf_ioctl_tbl)' $(perf_hdr_dir) > $@
482
483 madvise_behavior_array := $(beauty_outdir)/madvise_behavior_array.c
484 madvise_hdr_dir := $(srctree)/tools/include/uapi/asm-generic/
485 madvise_behavior_tbl := $(srctree)/tools/perf/trace/beauty/madvise_behavior.sh
486
487 $(madvise_behavior_array): $(madvise_hdr_dir)/mman-common.h $(madvise_behavior_tbl)
488         $(Q)$(SHELL) '$(madvise_behavior_tbl)' $(madvise_hdr_dir) > $@
489
490 mmap_flags_array := $(beauty_outdir)/mmap_flags_array.c
491 mmap_flags_tbl := $(srctree)/tools/perf/trace/beauty/mmap_flags.sh
492
493 $(mmap_flags_array): $(linux_uapi_dir)/mman.h $(asm_generic_uapi_dir)/mman.h $(asm_generic_uapi_dir)/mman-common.h $(mmap_flags_tbl)
494         $(Q)$(SHELL) '$(mmap_flags_tbl)' $(linux_uapi_dir) $(asm_generic_uapi_dir) $(arch_asm_uapi_dir) > $@
495
496 mount_flags_array := $(beauty_outdir)/mount_flags_array.c
497 mount_flags_tbl := $(srctree)/tools/perf/trace/beauty/mount_flags.sh
498
499 $(mount_flags_array): $(linux_uapi_dir)/fs.h $(mount_flags_tbl)
500         $(Q)$(SHELL) '$(mount_flags_tbl)' $(linux_uapi_dir) > $@
501
502 move_mount_flags_array := $(beauty_outdir)/move_mount_flags_array.c
503 move_mount_flags_tbl := $(srctree)/tools/perf/trace/beauty/move_mount_flags.sh
504
505 $(move_mount_flags_array): $(linux_uapi_dir)/fs.h $(move_mount_flags_tbl)
506         $(Q)$(SHELL) '$(move_mount_flags_tbl)' $(linux_uapi_dir) > $@
507
508 prctl_option_array := $(beauty_outdir)/prctl_option_array.c
509 prctl_hdr_dir := $(srctree)/tools/include/uapi/linux/
510 prctl_option_tbl := $(srctree)/tools/perf/trace/beauty/prctl_option.sh
511
512 $(prctl_option_array): $(prctl_hdr_dir)/prctl.h $(prctl_option_tbl)
513         $(Q)$(SHELL) '$(prctl_option_tbl)' $(prctl_hdr_dir) > $@
514
515 usbdevfs_ioctl_array := $(beauty_ioctl_outdir)/usbdevfs_ioctl_array.c
516 usbdevfs_ioctl_tbl := $(srctree)/tools/perf/trace/beauty/usbdevfs_ioctl.sh
517
518 $(usbdevfs_ioctl_array): $(linux_uapi_dir)/usbdevice_fs.h $(usbdevfs_ioctl_tbl)
519         $(Q)$(SHELL) '$(usbdevfs_ioctl_tbl)' $(linux_uapi_dir) > $@
520
521 x86_arch_prctl_code_array := $(beauty_outdir)/x86_arch_prctl_code_array.c
522 x86_arch_prctl_code_tbl := $(srctree)/tools/perf/trace/beauty/x86_arch_prctl.sh
523
524 $(x86_arch_prctl_code_array): $(x86_arch_asm_uapi_dir)/prctl.h $(x86_arch_prctl_code_tbl)
525         $(Q)$(SHELL) '$(x86_arch_prctl_code_tbl)' $(x86_arch_asm_uapi_dir) > $@
526
527 rename_flags_array := $(beauty_outdir)/rename_flags_array.c
528 rename_flags_tbl := $(srctree)/tools/perf/trace/beauty/rename_flags.sh
529
530 $(rename_flags_array): $(linux_uapi_dir)/fs.h $(rename_flags_tbl)
531         $(Q)$(SHELL) '$(rename_flags_tbl)' $(linux_uapi_dir) > $@
532
533 arch_errno_name_array := $(beauty_outdir)/arch_errno_name_array.c
534 arch_errno_hdr_dir := $(srctree)/tools
535 arch_errno_tbl := $(srctree)/tools/perf/trace/beauty/arch_errno_names.sh
536
537 $(arch_errno_name_array): $(arch_errno_tbl)
538         $(Q)$(SHELL) '$(arch_errno_tbl)' $(CC) $(arch_errno_hdr_dir) > $@
539
540 all: shell_compatibility_test $(ALL_PROGRAMS) $(LANG_BINDINGS) $(OTHER_PROGRAMS)
541
542 # Create python binding output directory if not already present
543 _dummy := $(shell [ -d '$(OUTPUT)python' ] || mkdir -p '$(OUTPUT)python')
544
545 $(OUTPUT)python/perf.so: $(PYTHON_EXT_SRCS) $(PYTHON_EXT_DEPS) $(LIBTRACEEVENT_DYNAMIC_LIST)
546         $(QUIET_GEN)LDSHARED="$(CC) -pthread -shared" \
547         CFLAGS='$(CFLAGS)' LDFLAGS='$(LDFLAGS) $(LIBTRACEEVENT_DYNAMIC_LIST_LDFLAGS)' \
548           $(PYTHON_WORD) util/setup.py \
549           --quiet build_ext; \
550         cp $(PYTHON_EXTBUILD_LIB)perf*.so $(OUTPUT)python/
551
552 please_set_SHELL_PATH_to_a_more_modern_shell:
553         $(Q)$$(:)
554
555 shell_compatibility_test: please_set_SHELL_PATH_to_a_more_modern_shell
556
557 strip: $(PROGRAMS) $(OUTPUT)perf
558         $(STRIP) $(STRIP_OPTS) $(PROGRAMS) $(OUTPUT)perf
559
560 PERF_IN := $(OUTPUT)perf-in.o
561
562 JEVENTS       := $(OUTPUT)pmu-events/jevents
563 JEVENTS_IN    := $(OUTPUT)pmu-events/jevents-in.o
564
565 PMU_EVENTS_IN := $(OUTPUT)pmu-events/pmu-events-in.o
566
567 LIBPERF_IN := $(OUTPUT)libperf-in.o
568
569 export JEVENTS
570
571 build := -f $(srctree)/tools/build/Makefile.build dir=. obj
572
573 $(PERF_IN): prepare FORCE
574         $(Q)$(MAKE) $(build)=perf
575
576 $(JEVENTS_IN): FORCE
577         $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=pmu-events obj=jevents
578
579 $(JEVENTS): $(JEVENTS_IN)
580         $(QUIET_LINK)$(HOSTCC) $(JEVENTS_IN) -o $@
581
582 $(PMU_EVENTS_IN): $(JEVENTS) FORCE
583         $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=pmu-events obj=pmu-events
584
585 $(LIBPERF_IN): prepare FORCE
586         $(Q)$(MAKE) $(build)=libperf
587
588 $(OUTPUT)perf: $(PERFLIBS) $(PERF_IN) $(PMU_EVENTS_IN) $(LIBPERF_IN) $(LIBTRACEEVENT_DYNAMIC_LIST)
589         $(QUIET_LINK)$(CC) $(CFLAGS) $(LDFLAGS) $(LIBTRACEEVENT_DYNAMIC_LIST_LDFLAGS) \
590                 $(PERF_IN) $(PMU_EVENTS_IN) $(LIBPERF_IN) $(LIBS) -o $@
591
592 $(GTK_IN): FORCE
593         $(Q)$(MAKE) $(build)=gtk
594
595 $(OUTPUT)libperf-gtk.so: $(GTK_IN) $(PERFLIBS)
596         $(QUIET_LINK)$(CC) -o $@ -shared $(LDFLAGS) $(filter %.o,$^) $(GTK_LIBS)
597
598 $(OUTPUT)common-cmds.h: util/generate-cmdlist.sh command-list.txt
599
600 $(OUTPUT)common-cmds.h: $(wildcard Documentation/perf-*.txt)
601         $(QUIET_GEN). util/generate-cmdlist.sh > $@+ && mv $@+ $@
602
603 $(SCRIPTS) : % : %.sh
604         $(QUIET_GEN)$(INSTALL) '$@.sh' '$(OUTPUT)$@'
605
606 $(OUTPUT)PERF-VERSION-FILE: ../../.git/HEAD
607         $(Q)$(SHELL_PATH) util/PERF-VERSION-GEN $(OUTPUT)
608         $(Q)touch $(OUTPUT)PERF-VERSION-FILE
609
610 # These can record PERF_VERSION
611 perf.spec $(SCRIPTS) \
612         : $(OUTPUT)PERF-VERSION-FILE
613
614 .SUFFIXES:
615
616 #
617 # If a target does not match any of the later rules then prefix it by $(OUTPUT)
618 # This makes targets like 'make O=/tmp/perf perf.o' work in a natural way.
619 #
620 ifneq ($(OUTPUT),)
621 %.o: $(OUTPUT)%.o
622         @echo "    # Redirected target $@ => $(OUTPUT)$@"
623 pmu-events/%.o: $(OUTPUT)pmu-events/%.o
624         @echo "    # Redirected target $@ => $(OUTPUT)$@"
625 util/%.o: $(OUTPUT)util/%.o
626         @echo "    # Redirected target $@ => $(OUTPUT)$@"
627 bench/%.o: $(OUTPUT)bench/%.o
628         @echo "    # Redirected target $@ => $(OUTPUT)$@"
629 tests/%.o: $(OUTPUT)tests/%.o
630         @echo "    # Redirected target $@ => $(OUTPUT)$@"
631 endif
632
633 # These two need to be here so that when O= is not used they take precedence
634 # over the general rule for .o
635
636 # get relative building directory (to $(OUTPUT))
637 # and '.' if it's $(OUTPUT) itself
638 __build-dir = $(subst $(OUTPUT),,$(dir $@))
639 build-dir   = $(if $(__build-dir),$(__build-dir),.)
640
641 prepare: $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)common-cmds.h archheaders $(drm_ioctl_array) \
642         $(fadvise_advice_array) \
643         $(fspick_arrays) \
644         $(pkey_alloc_access_rights_array) \
645         $(sndrv_pcm_ioctl_array) \
646         $(sndrv_ctl_ioctl_array) \
647         $(kcmp_type_array) \
648         $(kvm_ioctl_array) \
649         $(socket_ipproto_array) \
650         $(vhost_virtio_ioctl_array) \
651         $(madvise_behavior_array) \
652         $(mmap_flags_array) \
653         $(mount_flags_array) \
654         $(move_mount_flags_array) \
655         $(perf_ioctl_array) \
656         $(prctl_option_array) \
657         $(usbdevfs_ioctl_array) \
658         $(x86_arch_prctl_code_array) \
659         $(rename_flags_array) \
660         $(arch_errno_name_array)
661
662 $(OUTPUT)%.o: %.c prepare FORCE
663         $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
664
665 $(OUTPUT)%.i: %.c prepare FORCE
666         $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
667
668 $(OUTPUT)%.s: %.c prepare FORCE
669         $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
670
671 $(OUTPUT)%-bison.o: %.c prepare FORCE
672         $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
673
674 $(OUTPUT)%-flex.o: %.c prepare FORCE
675         $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
676
677 $(OUTPUT)%.o: %.S prepare FORCE
678         $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
679
680 $(OUTPUT)%.i: %.S prepare FORCE
681         $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
682
683 $(OUTPUT)perf-%: %.o $(PERFLIBS)
684         $(QUIET_LINK)$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $(filter %.o,$^) $(LIBS)
685
686 ifndef NO_PERF_READ_VDSO32
687 $(OUTPUT)perf-read-vdso32: perf-read-vdso.c util/find-map.c
688         $(QUIET_CC)$(CC) -m32 $(filter -static,$(LDFLAGS)) -Wall -Werror -o $@ perf-read-vdso.c
689 endif
690
691 ifndef NO_PERF_READ_VDSOX32
692 $(OUTPUT)perf-read-vdsox32: perf-read-vdso.c util/find-map.c
693         $(QUIET_CC)$(CC) -mx32 $(filter -static,$(LDFLAGS)) -Wall -Werror -o $@ perf-read-vdso.c
694 endif
695
696 ifndef NO_JVMTI
697 LIBJVMTI_IN := $(OUTPUT)jvmti/jvmti-in.o
698
699 $(LIBJVMTI_IN): FORCE
700         $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=jvmti obj=jvmti
701
702 $(OUTPUT)$(LIBJVMTI): $(LIBJVMTI_IN)
703         $(QUIET_LINK)$(CC) $(LDFLAGS) -shared -Wl,-soname -Wl,$(LIBJVMTI) -o $@ $<
704 endif
705
706 $(patsubst perf-%,%.o,$(PROGRAMS)): $(wildcard */*.h)
707
708 $(LIBPERF_A): $(LIBPERF_IN)
709         $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(LIBPERF_IN) $(LIB_OBJS)
710
711 LIBTRACEEVENT_FLAGS += plugin_dir=$(plugindir_SQ) 'EXTRA_CFLAGS=$(EXTRA_CFLAGS)' 'LDFLAGS=$(LDFLAGS)'
712
713 $(LIBTRACEEVENT): FORCE
714         $(Q)$(MAKE) -C $(TRACE_EVENT_DIR) $(LIBTRACEEVENT_FLAGS) O=$(OUTPUT) $(OUTPUT)libtraceevent.a
715
716 libtraceevent_plugins: FORCE
717         $(Q)$(MAKE) -C $(TRACE_EVENT_DIR) $(LIBTRACEEVENT_FLAGS) O=$(OUTPUT) plugins
718
719 $(LIBTRACEEVENT_DYNAMIC_LIST): libtraceevent_plugins
720         $(Q)$(MAKE) -C $(TRACE_EVENT_DIR) $(LIBTRACEEVENT_FLAGS) O=$(OUTPUT) $(OUTPUT)libtraceevent-dynamic-list
721
722 $(LIBTRACEEVENT)-clean:
723         $(call QUIET_CLEAN, libtraceevent)
724         $(Q)$(MAKE) -C $(TRACE_EVENT_DIR) O=$(OUTPUT) clean >/dev/null
725
726 install-traceevent-plugins: libtraceevent_plugins
727         $(Q)$(MAKE) -C $(TRACE_EVENT_DIR) $(LIBTRACEEVENT_FLAGS) O=$(OUTPUT) install_plugins
728
729 $(LIBAPI): FORCE
730         $(Q)$(MAKE) -C $(LIB_DIR) O=$(OUTPUT) $(OUTPUT)libapi.a
731
732 $(LIBAPI)-clean:
733         $(call QUIET_CLEAN, libapi)
734         $(Q)$(MAKE) -C $(LIB_DIR) O=$(OUTPUT) clean >/dev/null
735
736 $(LIBBPF): FORCE
737         $(Q)$(MAKE) -C $(BPF_DIR) O=$(OUTPUT) $(OUTPUT)libbpf.a FEATURES_DUMP=$(FEATURE_DUMP_EXPORT)
738
739 $(LIBBPF)-clean:
740         $(call QUIET_CLEAN, libbpf)
741         $(Q)$(MAKE) -C $(BPF_DIR) O=$(OUTPUT) clean >/dev/null
742
743 $(LIBSUBCMD): FORCE
744         $(Q)$(MAKE) -C $(SUBCMD_DIR) O=$(OUTPUT) $(OUTPUT)libsubcmd.a
745
746 $(LIBSUBCMD)-clean:
747         $(call QUIET_CLEAN, libsubcmd)
748         $(Q)$(MAKE) -C $(SUBCMD_DIR) O=$(OUTPUT) clean
749
750 help:
751         @echo 'Perf make targets:'
752         @echo '  doc            - make *all* documentation (see below)'
753         @echo '  man            - make manpage documentation (access with man <foo>)'
754         @echo '  html           - make html documentation'
755         @echo '  info           - make GNU info documentation (access with info <foo>)'
756         @echo '  pdf            - make pdf documentation'
757         @echo '  TAGS           - use etags to make tag information for source browsing'
758         @echo '  tags           - use ctags to make tag information for source browsing'
759         @echo '  cscope - use cscope to make interactive browsing database'
760         @echo ''
761         @echo 'Perf install targets:'
762         @echo '  NOTE: documentation build requires asciidoc, xmlto packages to be installed'
763         @echo '  HINT: use "prefix" or "DESTDIR" to install to a particular'
764         @echo '        path like "make prefix=/usr/local install install-doc"'
765         @echo '  install        - install compiled binaries'
766         @echo '  install-doc    - install *all* documentation'
767         @echo '  install-man    - install manpage documentation'
768         @echo '  install-html   - install html documentation'
769         @echo '  install-info   - install GNU info documentation'
770         @echo '  install-pdf    - install pdf documentation'
771         @echo ''
772         @echo '  quick-install-doc      - alias for quick-install-man'
773         @echo '  quick-install-man      - install the documentation quickly'
774         @echo '  quick-install-html     - install the html documentation quickly'
775         @echo ''
776         @echo 'Perf maintainer targets:'
777         @echo '  clean                  - clean all binary objects and build output'
778
779
780 DOC_TARGETS := doc man html info pdf
781
782 INSTALL_DOC_TARGETS := $(patsubst %,install-%,$(DOC_TARGETS)) try-install-man
783 INSTALL_DOC_TARGETS += quick-install-doc quick-install-man quick-install-html
784
785 # 'make doc' should call 'make -C Documentation all'
786 $(DOC_TARGETS):
787         $(QUIET_SUBDIR0)Documentation $(QUIET_SUBDIR1) $(@:doc=all)
788
789 TAG_FOLDERS= . ../lib ../include
790 TAG_FILES= ../../include/uapi/linux/perf_event.h
791
792 TAGS:
793         $(QUIET_GEN)$(RM) TAGS; \
794         $(FIND) $(TAG_FOLDERS) -name '*.[hcS]' -print -o -name '*.cpp' -print | xargs etags -a $(TAG_FILES)
795
796 tags:
797         $(QUIET_GEN)$(RM) tags; \
798         $(FIND) $(TAG_FOLDERS) -name '*.[hcS]' -print -o -name '*.cpp' -print | xargs ctags -a $(TAG_FILES)
799
800 cscope:
801         $(QUIET_GEN)$(RM) cscope*; \
802         $(FIND) $(TAG_FOLDERS) -name '*.[hcS]' -print -o -name '*.cpp' -print | xargs cscope -b $(TAG_FILES)
803
804 ### Testing rules
805
806 # GNU make supports exporting all variables by "export" without parameters.
807 # However, the environment gets quite big, and some programs have problems
808 # with that.
809
810 check: $(OUTPUT)common-cmds.h
811         if sparse; \
812         then \
813                 for i in *.c */*.c; \
814                 do \
815                         sparse $(CFLAGS) $(SPARSE_FLAGS) $$i || exit; \
816                 done; \
817         else \
818                 exit 1; \
819         fi
820
821 ### Installation rules
822
823 ifndef NO_GTK2
824 install-gtk: $(OUTPUT)libperf-gtk.so
825         $(call QUIET_INSTALL, 'GTK UI') \
826                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(libdir_SQ)'; \
827                 $(INSTALL) $(OUTPUT)libperf-gtk.so '$(DESTDIR_SQ)$(libdir_SQ)'
828 else
829 install-gtk:
830 endif
831
832 install-tools: all install-gtk
833         $(call QUIET_INSTALL, binaries) \
834                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(bindir_SQ)'; \
835                 $(INSTALL) $(OUTPUT)perf '$(DESTDIR_SQ)$(bindir_SQ)'; \
836                 $(LN) '$(DESTDIR_SQ)$(bindir_SQ)/perf' '$(DESTDIR_SQ)$(bindir_SQ)/trace'
837 ifndef NO_PERF_READ_VDSO32
838         $(call QUIET_INSTALL, perf-read-vdso32) \
839                 $(INSTALL) $(OUTPUT)perf-read-vdso32 '$(DESTDIR_SQ)$(bindir_SQ)';
840 endif
841 ifndef NO_PERF_READ_VDSOX32
842         $(call QUIET_INSTALL, perf-read-vdsox32) \
843                 $(INSTALL) $(OUTPUT)perf-read-vdsox32 '$(DESTDIR_SQ)$(bindir_SQ)';
844 endif
845 ifndef NO_JVMTI
846         $(call QUIET_INSTALL, $(LIBJVMTI)) \
847                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(libdir_SQ)'; \
848                 $(INSTALL) $(OUTPUT)$(LIBJVMTI) '$(DESTDIR_SQ)$(libdir_SQ)';
849 endif
850         $(call QUIET_INSTALL, libexec) \
851                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)'
852 ifndef NO_LIBBPF
853         $(call QUIET_INSTALL, bpf-headers) \
854                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perf_include_instdir_SQ)/bpf'; \
855                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perf_include_instdir_SQ)/bpf/linux'; \
856                 $(INSTALL) include/bpf/*.h -t '$(DESTDIR_SQ)$(perf_include_instdir_SQ)/bpf'; \
857                 $(INSTALL) include/bpf/linux/*.h -t '$(DESTDIR_SQ)$(perf_include_instdir_SQ)/bpf/linux'
858         $(call QUIET_INSTALL, bpf-examples) \
859                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perf_examples_instdir_SQ)/bpf'; \
860                 $(INSTALL) examples/bpf/*.c -t '$(DESTDIR_SQ)$(perf_examples_instdir_SQ)/bpf'
861 endif
862         $(call QUIET_INSTALL, perf-archive) \
863                 $(INSTALL) $(OUTPUT)perf-archive -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)'
864         $(call QUIET_INSTALL, perf-with-kcore) \
865                 $(INSTALL) $(OUTPUT)perf-with-kcore -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)'
866 ifndef NO_LIBAUDIT
867         $(call QUIET_INSTALL, strace/groups) \
868                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(STRACE_GROUPS_INSTDIR_SQ)'; \
869                 $(INSTALL) trace/strace/groups/* -t '$(DESTDIR_SQ)$(STRACE_GROUPS_INSTDIR_SQ)'
870 endif
871 ifndef NO_LIBPERL
872         $(call QUIET_INSTALL, perl-scripts) \
873                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/Perf-Trace-Util/lib/Perf/Trace'; \
874                 $(INSTALL) scripts/perl/Perf-Trace-Util/lib/Perf/Trace/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/Perf-Trace-Util/lib/Perf/Trace'; \
875                 $(INSTALL) scripts/perl/*.pl -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl'; \
876                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/bin'; \
877                 $(INSTALL) scripts/perl/bin/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/bin'
878 endif
879 ifndef NO_LIBPYTHON
880         $(call QUIET_INSTALL, python-scripts) \
881                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/Perf-Trace-Util/lib/Perf/Trace'; \
882                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/bin'; \
883                 $(INSTALL) scripts/python/Perf-Trace-Util/lib/Perf/Trace/* -m 644 -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/Perf-Trace-Util/lib/Perf/Trace'; \
884                 $(INSTALL) scripts/python/*.py -m 644 -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python'; \
885                 $(INSTALL) scripts/python/bin/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/bin'
886 endif
887         $(call QUIET_INSTALL, perf_completion-script) \
888                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(sysconfdir_SQ)/bash_completion.d'; \
889                 $(INSTALL) perf-completion.sh '$(DESTDIR_SQ)$(sysconfdir_SQ)/bash_completion.d/perf'
890         $(call QUIET_INSTALL, perf-tip) \
891                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(tip_instdir_SQ)'; \
892                 $(INSTALL) Documentation/tips.txt -t '$(DESTDIR_SQ)$(tip_instdir_SQ)'
893
894 install-tests: all install-gtk
895         $(call QUIET_INSTALL, tests) \
896                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests'; \
897                 $(INSTALL) tests/attr.py '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests'; \
898                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/attr'; \
899                 $(INSTALL) tests/attr/* '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/attr'; \
900                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/shell'; \
901                 $(INSTALL) tests/shell/*.sh '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/shell'; \
902                 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/shell/lib'; \
903                 $(INSTALL) tests/shell/lib/*.sh '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/shell/lib'
904
905 install-bin: install-tools install-tests install-traceevent-plugins
906
907 install: install-bin try-install-man
908
909 install-python_ext:
910         $(PYTHON_WORD) util/setup.py --quiet install --root='/$(DESTDIR_SQ)'
911
912 # 'make install-doc' should call 'make -C Documentation install'
913 $(INSTALL_DOC_TARGETS):
914         $(QUIET_SUBDIR0)Documentation $(QUIET_SUBDIR1) $(@:-doc=)
915
916 ### Cleaning rules
917
918 #
919 # This is here, not in Makefile.config, because Makefile.config does
920 # not get included for the clean target:
921 #
922 config-clean:
923         $(call QUIET_CLEAN, config)
924         $(Q)$(MAKE) -C $(srctree)/tools/build/feature/ $(if $(OUTPUT),OUTPUT=$(OUTPUT)feature/,) clean >/dev/null
925
926 python-clean:
927         $(python-clean)
928
929 clean:: $(LIBTRACEEVENT)-clean $(LIBAPI)-clean $(LIBBPF)-clean $(LIBSUBCMD)-clean config-clean fixdep-clean python-clean
930         $(call QUIET_CLEAN, core-objs)  $(RM) $(LIBPERF_A) $(OUTPUT)perf-archive $(OUTPUT)perf-with-kcore $(LANG_BINDINGS)
931         $(Q)find $(if $(OUTPUT),$(OUTPUT),.) -name '*.o' -delete -o -name '\.*.cmd' -delete -o -name '\.*.d' -delete
932         $(Q)$(RM) $(OUTPUT).config-detected
933         $(call QUIET_CLEAN, core-progs) $(RM) $(ALL_PROGRAMS) perf perf-read-vdso32 perf-read-vdsox32 $(OUTPUT)pmu-events/jevents $(OUTPUT)$(LIBJVMTI).so
934         $(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* \
935                 $(OUTPUT)util/intel-pt-decoder/inat-tables.c \
936                 $(OUTPUT)tests/llvm-src-{base,kbuild,prologue,relocation}.c \
937                 $(OUTPUT)pmu-events/pmu-events.c \
938                 $(OUTPUT)$(fadvise_advice_array) \
939                 $(OUTPUT)$(fspick_arrays) \
940                 $(OUTPUT)$(madvise_behavior_array) \
941                 $(OUTPUT)$(mmap_flags_array) \
942                 $(OUTPUT)$(mount_flags_array) \
943                 $(OUTPUT)$(move_mount_flags_array) \
944                 $(OUTPUT)$(drm_ioctl_array) \
945                 $(OUTPUT)$(pkey_alloc_access_rights_array) \
946                 $(OUTPUT)$(sndrv_ctl_ioctl_array) \
947                 $(OUTPUT)$(sndrv_pcm_ioctl_array) \
948                 $(OUTPUT)$(kvm_ioctl_array) \
949                 $(OUTPUT)$(kcmp_type_array) \
950                 $(OUTPUT)$(socket_ipproto_array) \
951                 $(OUTPUT)$(vhost_virtio_ioctl_array) \
952                 $(OUTPUT)$(perf_ioctl_array) \
953                 $(OUTPUT)$(prctl_option_array) \
954                 $(OUTPUT)$(usbdevfs_ioctl_array) \
955                 $(OUTPUT)$(x86_arch_prctl_code_array) \
956                 $(OUTPUT)$(rename_flags_array) \
957                 $(OUTPUT)$(arch_errno_name_array)
958         $(QUIET_SUBDIR0)Documentation $(QUIET_SUBDIR1) clean
959
960 #
961 # To provide FEATURE-DUMP into $(FEATURE_DUMP_COPY)
962 # file if defined, with no further action.
963 feature-dump:
964 ifdef FEATURE_DUMP_COPY
965         @cp $(OUTPUT)FEATURE-DUMP $(FEATURE_DUMP_COPY)
966         @echo "FEATURE-DUMP file copied into $(FEATURE_DUMP_COPY)"
967 else
968         @echo "FEATURE-DUMP file available in $(OUTPUT)FEATURE-DUMP"
969 endif
970
971 #
972 # Trick: if ../../.git does not exist - we are building out of tree for example,
973 # then force version regeneration:
974 #
975 ifeq ($(wildcard ../../.git/HEAD),)
976     GIT-HEAD-PHONY = ../../.git/HEAD
977 else
978     GIT-HEAD-PHONY =
979 endif
980
981 FORCE:
982
983 .PHONY: all install clean config-clean strip install-gtk
984 .PHONY: shell_compatibility_test please_set_SHELL_PATH_to_a_more_modern_shell
985 .PHONY: $(GIT-HEAD-PHONY) TAGS tags cscope FORCE prepare
986 .PHONY: libtraceevent_plugins archheaders
987
988 endif # force_fixdep