]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - tools/perf/Makefile.perf
perf symbols: add Java demangling support
[mirror_ubuntu-focal-kernel.git] / tools / perf / Makefile.perf
CommitLineData
bd69cc28
IM
1include ../scripts/Makefile.include
2
3# The default target of this Makefile is...
4all:
5
6include config/utilities.mak
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
JO
60#
61# Define NO_LIBDW_DWARF_UNWIND if you do not want libdw support
62# for dwarf backtrace post unwind.
e477f3f0
AH
63#
64# Define NO_PERF_READ_VDSO32 if you do not want to build perf-read-vdso32
65# for reading the 32-bit compatibility VDSO in 64-bit mode
66#
67# Define NO_PERF_READ_VDSOX32 if you do not want to build perf-read-vdsox32
68# for reading the x32 mode 32-bit compatibility VDSO in 64-bit mode
e92ce12e
NK
69#
70# Define NO_ZLIB if you do not want to support compressed kernel modules
53d0a573 71#
6ab2b762 72# Define LIBBABELTRACE if you DO want libbabeltrace support
53d0a573 73# for CTF data format.
80a32e5b
JO
74#
75# Define NO_LZMA if you do not want to support compressed (xz) kernel modules
e31f0d01
AH
76#
77# Define NO_AUXTRACE if you do not want AUX area tracing support
ed63f34c
WN
78#
79# Define NO_LIBBPF if you do not want BPF support
96b9e70b
JO
80#
81# Define FEATURES_DUMP to provide features detection dump file
82# and bypass the feature detection
5ea84154 83
237fae79
AH
84# As per kernel Makefile, avoid funny character set dependencies
85unexport LC_ALL
86LC_COLLATE=C
87LC_NUMERIC=C
88export LC_COLLATE LC_NUMERIC
89
bd69cc28
IM
90ifeq ($(srctree),)
91srctree := $(patsubst %/,%,$(dir $(shell pwd)))
92srctree := $(patsubst %/,%,$(dir $(srctree)))
93#$(info Determined 'srctree' to be $(srctree))
94endif
95
96ifneq ($(objtree),)
97#$(info Determined 'objtree' to be $(objtree))
98endif
99
100ifneq ($(OUTPUT),)
101#$(info Determined 'OUTPUT' to be $(OUTPUT))
9352aaba
JO
102# Adding $(OUTPUT) as a directory to look for source files,
103# because use generated output files as sources dependency
104# for flex/bison parsers.
105VPATH += $(OUTPUT)
106export VPATH
bd69cc28
IM
107endif
108
ceed252f
JO
109ifeq ($(V),1)
110 Q =
111else
112 Q = @
113endif
114
6dd280cd
JO
115# Do not use make's built-in rules
116# (this improves performance and avoids hard-to-debug behaviour);
117MAKEFLAGS += -r
118
bd69cc28 119$(OUTPUT)PERF-VERSION-FILE: ../../.git/HEAD
ceed252f
JO
120 $(Q)$(SHELL_PATH) util/PERF-VERSION-GEN $(OUTPUT)
121 $(Q)touch $(OUTPUT)PERF-VERSION-FILE
bd69cc28 122
3c71ba3f
AB
123# Makefiles suck: This macro sets a default value of $(2) for the
124# variable named by $(1), unless the variable has been set by
125# environment or command line. This is necessary for CC and AR
126# because make sets default values, so the simpler ?= approach
127# won't work as expected.
128define allow-override
129 $(if $(or $(findstring environment,$(origin $(1))),\
130 $(findstring command line,$(origin $(1)))),,\
131 $(eval $(1) = $(2)))
132endef
133
134# Allow setting CC and AR and LD, or setting CROSS_COMPILE as a prefix.
135$(call allow-override,CC,$(CROSS_COMPILE)gcc)
136$(call allow-override,AR,$(CROSS_COMPILE)ar)
137$(call allow-override,LD,$(CROSS_COMPILE)ld)
138
a8a5cd8b 139PKG_CONFIG = $(CROSS_COMPILE)pkg-config
bd69cc28
IM
140
141RM = rm -f
b52bc234 142LN = ln -f
bd69cc28
IM
143MKDIR = mkdir
144FIND = find
145INSTALL = install
146FLEX = flex
147BISON = bison
148STRIP = strip
237fae79 149AWK = awk
bd69cc28 150
4b6ab94e 151LIB_DIR = $(srctree)/tools/lib/api/
bd69cc28 152TRACE_EVENT_DIR = $(srctree)/tools/lib/traceevent/
4b6ab94e
JP
153BPF_DIR = $(srctree)/tools/lib/bpf/
154SUBCMD_DIR = $(srctree)/tools/lib/subcmd/
bd69cc28
IM
155
156# include config/Makefile by default and rule out
157# non-config cases
158config := 1
159
160NON_CONFIG_TARGETS := clean TAGS tags cscope help
161
162ifdef MAKECMDGOALS
163ifeq ($(filter-out $(NON_CONFIG_TARGETS),$(MAKECMDGOALS)),)
164 config := 0
165endif
166endif
167
c053a150
WN
168# Set FEATURE_TESTS to 'all' so all possible feature checkers are executed.
169# Without this setting the output feature dump file misses some features, for
170# example, liberty. Select all checkers so we won't get an incomplete feature
171# dump file.
bd69cc28 172ifeq ($(config),1)
c053a150
WN
173ifdef MAKECMDGOALS
174ifeq ($(filter feature-dump,$(MAKECMDGOALS)),feature-dump)
175FEATURE_TESTS := all
176endif
177endif
bd69cc28
IM
178include config/Makefile
179endif
180
96b9e70b
JO
181# The FEATURE_DUMP_EXPORT holds location of the actual
182# FEATURE_DUMP file to be used to bypass feature detection
183# (for bpf or any other subproject)
184ifeq ($(FEATURES_DUMP),)
185FEATURE_DUMP_EXPORT := $(realpath $(OUTPUT)FEATURE-DUMP)
186else
187FEATURE_DUMP_EXPORT := $(FEATURES_DUMP)
188endif
189
3d7c0144 190export prefix bindir sharedir sysconfdir DESTDIR
bd69cc28
IM
191
192# sparse is architecture-neutral, which means that we need to tell it
193# explicitly what architecture to check for. Fix this up for yours..
194SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
195
196# Guard against environment variables
bd69cc28
IM
197PYRF_OBJS =
198SCRIPT_SH =
199
200SCRIPT_SH += perf-archive.sh
c501e90b 201SCRIPT_SH += perf-with-kcore.sh
bd69cc28
IM
202
203grep-libs = $(filter -l%,$(1))
204strip-libs = $(filter-out -l%,$(1))
205
206ifneq ($(OUTPUT),)
207 TE_PATH=$(OUTPUT)
ed63f34c 208 BPF_PATH=$(OUTPUT)
4b6ab94e 209 SUBCMD_PATH=$(OUTPUT)
bd69cc28 210ifneq ($(subdir),)
212e984a 211 API_PATH=$(OUTPUT)/../lib/api/
bd69cc28 212else
212e984a 213 API_PATH=$(OUTPUT)
bd69cc28
IM
214endif
215else
216 TE_PATH=$(TRACE_EVENT_DIR)
212e984a 217 API_PATH=$(LIB_DIR)
ed63f34c 218 BPF_PATH=$(BPF_DIR)
4b6ab94e 219 SUBCMD_PATH=$(SUBCMD_DIR)
bd69cc28
IM
220endif
221
222LIBTRACEEVENT = $(TE_PATH)libtraceevent.a
223export LIBTRACEEVENT
224
e3d09ec8 225LIBTRACEEVENT_DYNAMIC_LIST = $(TE_PATH)libtraceevent-dynamic-list
5d618324 226LIBTRACEEVENT_DYNAMIC_LIST_LDFLAGS = -Xlinker --dynamic-list=$(LIBTRACEEVENT_DYNAMIC_LIST)
e3d09ec8 227
212e984a 228LIBAPI = $(API_PATH)libapi.a
285a8f24 229export LIBAPI
bd69cc28 230
ed63f34c
WN
231LIBBPF = $(BPF_PATH)libbpf.a
232
4b6ab94e
JP
233LIBSUBCMD = $(SUBCMD_PATH)libsubcmd.a
234
bd69cc28
IM
235# python extension build directories
236PYTHON_EXTBUILD := $(OUTPUT)python_ext_build/
237PYTHON_EXTBUILD_LIB := $(PYTHON_EXTBUILD)lib/
238PYTHON_EXTBUILD_TMP := $(PYTHON_EXTBUILD)tmp/
239export PYTHON_EXTBUILD_LIB PYTHON_EXTBUILD_TMP
240
8ec19c0e 241python-clean := $(call QUIET_CLEAN, python) $(RM) -r $(PYTHON_EXTBUILD) $(OUTPUT)python/perf.so
bd69cc28
IM
242
243PYTHON_EXT_SRCS := $(shell grep -v ^\# util/python-ext-sources)
285a8f24 244PYTHON_EXT_DEPS := util/python-ext-sources util/setup.py $(LIBTRACEEVENT) $(LIBAPI)
bd69cc28 245
a35489a6 246$(OUTPUT)python/perf.so: $(PYTHON_EXT_SRCS) $(PYTHON_EXT_DEPS) $(LIBTRACEEVENT_DYNAMIC_LIST)
5d618324
WN
247 $(QUIET_GEN)CFLAGS='$(CFLAGS)' LDFLAGS='$(LDFLAGS) $(LIBTRACEEVENT_DYNAMIC_LIST_LDFLAGS)' \
248 $(PYTHON_WORD) util/setup.py \
bd69cc28
IM
249 --quiet build_ext; \
250 mkdir -p $(OUTPUT)python && \
251 cp $(PYTHON_EXTBUILD_LIB)perf.so $(OUTPUT)python/
252#
253# No Perl scripts right now:
254#
255
256SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH))
257
bd69cc28
IM
258PROGRAMS += $(OUTPUT)perf
259
e477f3f0
AH
260ifndef NO_PERF_READ_VDSO32
261PROGRAMS += $(OUTPUT)perf-read-vdso32
262endif
263
264ifndef NO_PERF_READ_VDSOX32
265PROGRAMS += $(OUTPUT)perf-read-vdsox32
266endif
267
bd69cc28
IM
268# what 'all' will build and 'install' will install, in perfexecdir
269ALL_PROGRAMS = $(PROGRAMS) $(SCRIPTS)
270
271# what 'all' will build but not install in perfexecdir
272OTHER_PROGRAMS = $(OUTPUT)perf
273
274# Set paths to tools early so that they can be used for version tests.
275ifndef SHELL_PATH
276 SHELL_PATH = /bin/sh
277endif
278ifndef PERL_PATH
279 PERL_PATH = /usr/bin/perl
280endif
281
282export PERL_PATH
283
bd69cc28
IM
284LIB_FILE=$(OUTPUT)libperf.a
285
4b6ab94e 286PERFLIBS = $(LIB_FILE) $(LIBAPI) $(LIBTRACEEVENT) $(LIBSUBCMD)
ed63f34c
WN
287ifndef NO_LIBBPF
288 PERFLIBS += $(LIBBPF)
289endif
bd69cc28
IM
290
291# We choose to avoid "if .. else if .. else .. endif endif"
292# because maintaining the nesting to match is a pain. If
293# we had "elif" things would have been much nicer...
294
295-include arch/$(ARCH)/Makefile
296
297ifneq ($(OUTPUT),)
298 CFLAGS += -I$(OUTPUT)
299endif
300
bd69cc28 301ifndef NO_GTK2
fc67297b 302 ALL_PROGRAMS += $(OUTPUT)libperf-gtk.so
88aeea06 303 GTK_IN := $(OUTPUT)gtk-in.o
fc67297b
NK
304
305install-gtk: $(OUTPUT)libperf-gtk.so
8a5411e9
IM
306 $(call QUIET_INSTALL, 'GTK UI') \
307 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(libdir_SQ)'; \
308 $(INSTALL) $(OUTPUT)libperf-gtk.so '$(DESTDIR_SQ)$(libdir_SQ)'
bd69cc28
IM
309endif
310
bd69cc28
IM
311ifdef ASCIIDOC8
312 export ASCIIDOC8
313endif
314
315LIBS = -Wl,--whole-archive $(PERFLIBS) -Wl,--no-whole-archive -Wl,--start-group $(EXTLIBS) -Wl,--end-group
316
317export INSTALL SHELL_PATH
318
319### Build rules
320
321SHELL = $(SHELL_PATH)
322
323all: shell_compatibility_test $(ALL_PROGRAMS) $(LANG_BINDINGS) $(OTHER_PROGRAMS)
324
325please_set_SHELL_PATH_to_a_more_modern_shell:
ceed252f 326 $(Q)$$(:)
bd69cc28
IM
327
328shell_compatibility_test: please_set_SHELL_PATH_to_a_more_modern_shell
329
330strip: $(PROGRAMS) $(OUTPUT)perf
331 $(STRIP) $(STRIP_OPTS) $(PROGRAMS) $(OUTPUT)perf
332
72965b87
JO
333PERF_IN := $(OUTPUT)perf-in.o
334
237fae79 335export srctree OUTPUT RM CC LD AR CFLAGS V BISON FLEX AWK
ab6201d0 336include $(srctree)/tools/build/Makefile.include
72965b87 337
324c824a 338$(PERF_IN): prepare FORCE
ceed252f 339 $(Q)$(MAKE) $(build)=perf
72965b87 340
e3d09ec8 341$(OUTPUT)perf: $(PERFLIBS) $(PERF_IN) $(LIBTRACEEVENT_DYNAMIC_LIST)
5d618324
WN
342 $(QUIET_LINK)$(CC) $(CFLAGS) $(LDFLAGS) $(LIBTRACEEVENT_DYNAMIC_LIST_LDFLAGS) \
343 $(PERF_IN) $(LIBS) -o $@
bd69cc28 344
7c422f55 345$(GTK_IN): fixdep FORCE
ceed252f 346 $(Q)$(MAKE) $(build)=gtk
fc67297b 347
88aeea06 348$(OUTPUT)libperf-gtk.so: $(GTK_IN) $(PERFLIBS)
e27a08f5 349 $(QUIET_LINK)$(CC) -o $@ -shared $(LDFLAGS) $(filter %.o,$^) $(GTK_LIBS)
fc67297b 350
bd69cc28
IM
351$(OUTPUT)common-cmds.h: util/generate-cmdlist.sh command-list.txt
352
353$(OUTPUT)common-cmds.h: $(wildcard Documentation/perf-*.txt)
354 $(QUIET_GEN). util/generate-cmdlist.sh > $@+ && mv $@+ $@
355
356$(SCRIPTS) : % : %.sh
357 $(QUIET_GEN)$(INSTALL) '$@.sh' '$(OUTPUT)$@'
358
359# These can record PERF_VERSION
cb4e67fd 360perf.spec $(SCRIPTS) \
bd69cc28
IM
361 : $(OUTPUT)PERF-VERSION-FILE
362
363.SUFFIXES:
1f7c645a
IM
364
365#
366# If a target does not match any of the later rules then prefix it by $(OUTPUT)
367# This makes targets like 'make O=/tmp/perf perf.o' work in a natural way.
368#
369ifneq ($(OUTPUT),)
370%.o: $(OUTPUT)%.o
371 @echo " # Redirected target $@ => $(OUTPUT)$@"
372util/%.o: $(OUTPUT)util/%.o
cee972c0 373 @echo " # Redirected target $@ => $(OUTPUT)$@"
1f7c645a 374bench/%.o: $(OUTPUT)bench/%.o
cee972c0 375 @echo " # Redirected target $@ => $(OUTPUT)$@"
1f7c645a 376tests/%.o: $(OUTPUT)tests/%.o
cee972c0 377 @echo " # Redirected target $@ => $(OUTPUT)$@"
1f7c645a 378endif
bd69cc28
IM
379
380# These two need to be here so that when O= is not used they take precedence
381# over the general rule for .o
382
1999307b
JO
383# get relative building directory (to $(OUTPUT))
384# and '.' if it's $(OUTPUT) itself
385__build-dir = $(subst $(OUTPUT),,$(dir $@))
386build-dir = $(if $(__build-dir),$(__build-dir),.)
387
7c422f55 388prepare: $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)common-cmds.h fixdep
1999307b 389
324c824a 390$(OUTPUT)%.o: %.c prepare FORCE
ceed252f 391 $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
1999307b 392
324c824a 393$(OUTPUT)%.i: %.c prepare FORCE
ceed252f 394 $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
1999307b 395
324c824a 396$(OUTPUT)%.s: %.c prepare FORCE
ceed252f 397 $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
1999307b 398
324c824a 399$(OUTPUT)%-bison.o: %.c prepare FORCE
ceed252f 400 $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
1999307b 401
324c824a 402$(OUTPUT)%-flex.o: %.c prepare FORCE
ceed252f 403 $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
1999307b 404
324c824a 405$(OUTPUT)%.o: %.S prepare FORCE
ceed252f 406 $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
1999307b 407
324c824a 408$(OUTPUT)%.i: %.S prepare FORCE
ceed252f 409 $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=$(build-dir) $@
bd69cc28 410
bd69cc28
IM
411$(OUTPUT)perf-%: %.o $(PERFLIBS)
412 $(QUIET_LINK)$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $(filter %.o,$^) $(LIBS)
413
e477f3f0
AH
414ifndef NO_PERF_READ_VDSO32
415$(OUTPUT)perf-read-vdso32: perf-read-vdso.c util/find-vdso-map.c
416 $(QUIET_CC)$(CC) -m32 $(filter -static,$(LDFLAGS)) -Wall -Werror -o $@ perf-read-vdso.c
417endif
418
419ifndef NO_PERF_READ_VDSOX32
420$(OUTPUT)perf-read-vdsox32: perf-read-vdso.c util/find-vdso-map.c
421 $(QUIET_CC)$(CC) -mx32 $(filter -static,$(LDFLAGS)) -Wall -Werror -o $@ perf-read-vdso.c
422endif
423
8e499ac5 424$(patsubst perf-%,%.o,$(PROGRAMS)): $(wildcard */*.h)
bd69cc28 425
9352aaba
JO
426LIBPERF_IN := $(OUTPUT)libperf-in.o
427
7c422f55 428$(LIBPERF_IN): fixdep FORCE
ceed252f 429 $(Q)$(MAKE) $(build)=libperf
9352aaba 430
8e499ac5 431$(LIB_FILE): $(LIBPERF_IN)
9352aaba 432 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(LIBPERF_IN) $(LIB_OBJS)
bd69cc28 433
3d7c0144
JO
434LIBTRACEEVENT_FLAGS += plugin_dir=$(plugindir_SQ)
435
7c422f55 436$(LIBTRACEEVENT): fixdep FORCE
e3d09ec8
HK
437 $(Q)$(MAKE) -C $(TRACE_EVENT_DIR) $(LIBTRACEEVENT_FLAGS) O=$(OUTPUT) $(OUTPUT)libtraceevent.a
438
7c422f55 439libtraceevent_plugins: fixdep FORCE
e3d09ec8
HK
440 $(Q)$(MAKE) -C $(TRACE_EVENT_DIR) $(LIBTRACEEVENT_FLAGS) O=$(OUTPUT) plugins
441
442$(LIBTRACEEVENT_DYNAMIC_LIST): libtraceevent_plugins
443 $(Q)$(MAKE) -C $(TRACE_EVENT_DIR) $(LIBTRACEEVENT_FLAGS) O=$(OUTPUT) $(OUTPUT)libtraceevent-dynamic-list
bd69cc28
IM
444
445$(LIBTRACEEVENT)-clean:
8ec19c0e 446 $(call QUIET_CLEAN, libtraceevent)
ceed252f 447 $(Q)$(MAKE) -C $(TRACE_EVENT_DIR) O=$(OUTPUT) clean >/dev/null
bd69cc28 448
67befc65 449install-traceevent-plugins: libtraceevent_plugins
ceed252f 450 $(Q)$(MAKE) -C $(TRACE_EVENT_DIR) $(LIBTRACEEVENT_FLAGS) O=$(OUTPUT) install_plugins
3d7c0144 451
7c422f55 452$(LIBAPI): fixdep FORCE
ceed252f 453 $(Q)$(MAKE) -C $(LIB_DIR) O=$(OUTPUT) $(OUTPUT)libapi.a
bd69cc28 454
285a8f24
JO
455$(LIBAPI)-clean:
456 $(call QUIET_CLEAN, libapi)
ceed252f 457 $(Q)$(MAKE) -C $(LIB_DIR) O=$(OUTPUT) clean >/dev/null
bd69cc28 458
50f1e6d0 459$(LIBBPF): fixdep FORCE
96b9e70b 460 $(Q)$(MAKE) -C $(BPF_DIR) O=$(OUTPUT) $(OUTPUT)libbpf.a FEATURES_DUMP=$(FEATURE_DUMP_EXPORT)
ed63f34c
WN
461
462$(LIBBPF)-clean:
463 $(call QUIET_CLEAN, libbpf)
464 $(Q)$(MAKE) -C $(BPF_DIR) O=$(OUTPUT) clean >/dev/null
465
4b6ab94e
JP
466$(LIBSUBCMD): fixdep FORCE
467 $(Q)$(MAKE) -C $(SUBCMD_DIR) O=$(OUTPUT) $(OUTPUT)libsubcmd.a
468
469$(LIBSUBCMD)-clean:
470 $(call QUIET_CLEAN, libsubcmd)
471 $(Q)$(MAKE) -C $(SUBCMD_DIR) O=$(OUTPUT) clean
472
bd69cc28
IM
473help:
474 @echo 'Perf make targets:'
475 @echo ' doc - make *all* documentation (see below)'
476 @echo ' man - make manpage documentation (access with man <foo>)'
477 @echo ' html - make html documentation'
478 @echo ' info - make GNU info documentation (access with info <foo>)'
479 @echo ' pdf - make pdf documentation'
480 @echo ' TAGS - use etags to make tag information for source browsing'
481 @echo ' tags - use ctags to make tag information for source browsing'
482 @echo ' cscope - use cscope to make interactive browsing database'
483 @echo ''
484 @echo 'Perf install targets:'
485 @echo ' NOTE: documentation build requires asciidoc, xmlto packages to be installed'
fc9cabea
JZ
486 @echo ' HINT: use "prefix" or "DESTDIR" to install to a particular'
487 @echo ' path like "make prefix=/usr/local install install-doc"'
bd69cc28
IM
488 @echo ' install - install compiled binaries'
489 @echo ' install-doc - install *all* documentation'
490 @echo ' install-man - install manpage documentation'
491 @echo ' install-html - install html documentation'
492 @echo ' install-info - install GNU info documentation'
493 @echo ' install-pdf - install pdf documentation'
494 @echo ''
495 @echo ' quick-install-doc - alias for quick-install-man'
496 @echo ' quick-install-man - install the documentation quickly'
497 @echo ' quick-install-html - install the html documentation quickly'
498 @echo ''
499 @echo 'Perf maintainer targets:'
500 @echo ' clean - clean all binary objects and build output'
501
502
503DOC_TARGETS := doc man html info pdf
504
505INSTALL_DOC_TARGETS := $(patsubst %,install-%,$(DOC_TARGETS)) try-install-man
506INSTALL_DOC_TARGETS += quick-install-doc quick-install-man quick-install-html
507
508# 'make doc' should call 'make -C Documentation all'
509$(DOC_TARGETS):
510 $(QUIET_SUBDIR0)Documentation $(QUIET_SUBDIR1) $(@:doc=all)
511
685c8415 512TAG_FOLDERS= . ../lib ../include
16a64336
SAS
513TAG_FILES= ../../include/uapi/linux/perf_event.h
514
bd69cc28 515TAGS:
b0815d07 516 $(QUIET_GEN)$(RM) TAGS; \
16a64336 517 $(FIND) $(TAG_FOLDERS) -name '*.[hcS]' -print | xargs etags -a $(TAG_FILES)
bd69cc28
IM
518
519tags:
b0815d07 520 $(QUIET_GEN)$(RM) tags; \
16a64336 521 $(FIND) $(TAG_FOLDERS) -name '*.[hcS]' -print | xargs ctags -a $(TAG_FILES)
bd69cc28
IM
522
523cscope:
b0815d07 524 $(QUIET_GEN)$(RM) cscope*; \
16a64336 525 $(FIND) $(TAG_FOLDERS) -name '*.[hcS]' -print | xargs cscope -b $(TAG_FILES)
bd69cc28 526
bd69cc28
IM
527### Testing rules
528
529# GNU make supports exporting all variables by "export" without parameters.
530# However, the environment gets quite big, and some programs have problems
531# with that.
532
533check: $(OUTPUT)common-cmds.h
534 if sparse; \
535 then \
536 for i in *.c */*.c; \
537 do \
538 sparse $(CFLAGS) $(SPARSE_FLAGS) $$i || exit; \
539 done; \
540 else \
541 exit 1; \
542 fi
543
544### Installation rules
545
fc67297b
NK
546install-gtk:
547
128c32ed 548install-tools: all install-gtk
8a5411e9
IM
549 $(call QUIET_INSTALL, binaries) \
550 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(bindir_SQ)'; \
551 $(INSTALL) $(OUTPUT)perf '$(DESTDIR_SQ)$(bindir_SQ)'; \
552 $(LN) '$(DESTDIR_SQ)$(bindir_SQ)/perf' '$(DESTDIR_SQ)$(bindir_SQ)/trace'
e477f3f0
AH
553ifndef NO_PERF_READ_VDSO32
554 $(call QUIET_INSTALL, perf-read-vdso32) \
555 $(INSTALL) $(OUTPUT)perf-read-vdso32 '$(DESTDIR_SQ)$(bindir_SQ)';
556endif
557ifndef NO_PERF_READ_VDSOX32
558 $(call QUIET_INSTALL, perf-read-vdsox32) \
559 $(INSTALL) $(OUTPUT)perf-read-vdsox32 '$(DESTDIR_SQ)$(bindir_SQ)';
560endif
8a5411e9
IM
561 $(call QUIET_INSTALL, libexec) \
562 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)'
563 $(call QUIET_INSTALL, perf-archive) \
564 $(INSTALL) $(OUTPUT)perf-archive -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)'
c501e90b
AH
565 $(call QUIET_INSTALL, perf-with-kcore) \
566 $(INSTALL) $(OUTPUT)perf-with-kcore -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)'
005438a8
ACM
567ifndef NO_LIBAUDIT
568 $(call QUIET_INSTALL, strace/groups) \
569 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(STRACE_GROUPS_INSTDIR_SQ)'; \
570 $(INSTALL) trace/strace/groups/* -t '$(DESTDIR_SQ)$(STRACE_GROUPS_INSTDIR_SQ)'
571endif
bd69cc28 572ifndef NO_LIBPERL
8a5411e9
IM
573 $(call QUIET_INSTALL, perl-scripts) \
574 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/Perf-Trace-Util/lib/Perf/Trace'; \
575 $(INSTALL) scripts/perl/Perf-Trace-Util/lib/Perf/Trace/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/Perf-Trace-Util/lib/Perf/Trace'; \
576 $(INSTALL) scripts/perl/*.pl -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl'; \
577 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/bin'; \
578 $(INSTALL) scripts/perl/bin/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/bin'
bd69cc28
IM
579endif
580ifndef NO_LIBPYTHON
8a5411e9
IM
581 $(call QUIET_INSTALL, python-scripts) \
582 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/Perf-Trace-Util/lib/Perf/Trace'; \
583 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/bin'; \
584 $(INSTALL) scripts/python/Perf-Trace-Util/lib/Perf/Trace/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/Perf-Trace-Util/lib/Perf/Trace'; \
585 $(INSTALL) scripts/python/*.py -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python'; \
586 $(INSTALL) scripts/python/bin/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/bin'
bd69cc28 587endif
a8b4c701 588 $(call QUIET_INSTALL, perf_completion-script) \
8a5411e9 589 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(sysconfdir_SQ)/bash_completion.d'; \
a8b4c701 590 $(INSTALL) perf-completion.sh '$(DESTDIR_SQ)$(sysconfdir_SQ)/bash_completion.d/perf'
14cbfbeb
NK
591 $(call QUIET_INSTALL, perf-tip) \
592 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(tip_instdir_SQ)'; \
593 $(INSTALL) Documentation/tips.txt -t '$(DESTDIR_SQ)$(tip_instdir_SQ)'
128c32ed
NN
594
595install-tests: all install-gtk
8a5411e9
IM
596 $(call QUIET_INSTALL, tests) \
597 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests'; \
598 $(INSTALL) tests/attr.py '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests'; \
599 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/attr'; \
600 $(INSTALL) tests/attr/* '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/attr'
bd69cc28 601
128c32ed
NN
602install-bin: install-tools install-tests
603
3d7c0144 604install: install-bin try-install-man install-traceevent-plugins
bd69cc28
IM
605
606install-python_ext:
607 $(PYTHON_WORD) util/setup.py --quiet install --root='/$(DESTDIR_SQ)'
608
609# 'make install-doc' should call 'make -C Documentation install'
610$(INSTALL_DOC_TARGETS):
611 $(QUIET_SUBDIR0)Documentation $(QUIET_SUBDIR1) $(@:-doc=)
612
613### Cleaning rules
614
615#
616# This is here, not in config/Makefile, because config/Makefile does
617# not get included for the clean target:
618#
619config-clean:
8ec19c0e 620 $(call QUIET_CLEAN, config)
8f46dfd7 621 $(Q)$(MAKE) -C $(srctree)/tools/build/feature/ $(if $(OUTPUT),OUTPUT=$(OUTPUT)feature/,) clean >/dev/null
bd69cc28 622
4b6ab94e 623clean: $(LIBTRACEEVENT)-clean $(LIBAPI)-clean $(LIBBPF)-clean $(LIBSUBCMD)-clean config-clean
8e499ac5 624 $(call QUIET_CLEAN, core-objs) $(RM) $(LIB_FILE) $(OUTPUT)perf-archive $(OUTPUT)perf-with-kcore $(LANG_BINDINGS)
8f46dfd7 625 $(Q)find $(if $(OUTPUT),$(OUTPUT),.) -name '*.o' -delete -o -name '\.*.cmd' -delete -o -name '\.*.d' -delete
64227379 626 $(Q)$(RM) $(OUTPUT).config-detected
e477f3f0 627 $(call QUIET_CLEAN, core-progs) $(RM) $(ALL_PROGRAMS) perf perf-read-vdso32 perf-read-vdsox32
237fae79 628 $(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 629 $(OUTPUT)util/intel-pt-decoder/inat-tables.c $(OUTPUT)fixdep \
7b6982ce 630 $(OUTPUT)tests/llvm-src-{base,kbuild,prologue,relocation}.c
553873e1 631 $(QUIET_SUBDIR0)Documentation $(QUIET_SUBDIR1) clean
bd69cc28
IM
632 $(python-clean)
633
b8e52be0
JO
634#
635# To provide FEATURE-DUMP into $(FEATURE_DUMP_COPY)
636# file if defined, with no further action.
637feature-dump:
638ifdef FEATURE_DUMP_COPY
639 @cp $(OUTPUT)FEATURE-DUMP $(FEATURE_DUMP_COPY)
640 @echo "FEATURE-DUMP file copied into $(FEATURE_DUMP_COPY)"
641else
642 @echo "FEATURE-DUMP file available in $(OUTPUT)FEATURE-DUMP"
643endif
644
bd69cc28
IM
645#
646# Trick: if ../../.git does not exist - we are building out of tree for example,
647# then force version regeneration:
648#
649ifeq ($(wildcard ../../.git/HEAD),)
650 GIT-HEAD-PHONY = ../../.git/HEAD
651else
652 GIT-HEAD-PHONY =
653endif
654
72965b87
JO
655FORCE:
656
fc67297b 657.PHONY: all install clean config-clean strip install-gtk
bd69cc28 658.PHONY: shell_compatibility_test please_set_SHELL_PATH_to_a_more_modern_shell
324c824a 659.PHONY: $(GIT-HEAD-PHONY) TAGS tags cscope FORCE prepare
e3d09ec8 660.PHONY: libtraceevent_plugins
bd69cc28 661