perf tools: Move UI bits to tools/perf/ui directory
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / tools / perf / Makefile
CommitLineData
98d89bfd 1include ../scripts/Makefile.include
c29ede61 2
d24e473e 3# The default target of this Makefile is...
a3d1ee10 4all:
e0143bad 5
ced465c4
MW
6include config/utilities.mak
7
a3d1ee10 8# Define V to have a more verbose compile.
d24e473e 9#
67cbbd7f
NK
10# Define O to save output files in a separate directory.
11#
12# Define ARCH as name of target architecture if you want cross-builds.
13#
14# Define CROSS_COMPILE as prefix name of compiler if you want cross-builds.
15#
16# Define NO_LIBPERL to disable perl script extension.
17#
18# Define NO_LIBPYTHON to disable python script extension.
19#
ced465c4
MW
20# Define PYTHON to point to the python binary if the default
21# `python' is not correct; for example: PYTHON=python2
22#
23# Define PYTHON_CONFIG to point to the python-config binary if
24# the default `$(PYTHON)-config' is not correct.
25#
d24e473e
IM
26# Define ASCIIDOC8 if you want to format documentation with AsciiDoc 8
27#
28# Define DOCBOOK_XSL_172 if you want to format man pages with DocBook XSL v1.72.
29#
75138650 30# Define LDFLAGS=-static to build a static binary.
81516c5f
MT
31#
32# Define EXTRA_CFLAGS=-m64 or EXTRA_CFLAGS=-m32 as appropriate for cross-builds.
ca721e45
MH
33#
34# Define NO_DWARF if you do not want debug-info analysis feature at all.
9e59e099
DH
35#
36# Define WERROR=0 to disable treating any warnings as errors.
67cbbd7f
NK
37#
38# Define NO_NEWT if you do not want TUI support.
39#
40# Define NO_DEMANGLE if you do not want C++ symbol demangling.
e0143bad 41
c29ede61
ACM
42$(OUTPUT)PERF-VERSION-FILE: .FORCE-PERF-VERSION-FILE
43 @$(SHELL_PATH) util/PERF-VERSION-GEN $(OUTPUT)
44-include $(OUTPUT)PERF-VERSION-FILE
e0143bad 45
a3d1ee10 46uname_M := $(shell uname -m 2>/dev/null || echo not)
de9ac07b 47
cd932c59
IM
48ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \
49 -e s/arm.*/arm/ -e s/sa110/arm/ \
50 -e s/s390x/s390/ -e s/parisc64/parisc/ \
51 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
52 -e s/sh[234].*/sh/ )
53
174a7b1f
LM
54CC = $(CROSS_COMPILE)gcc
55AR = $(CROSS_COMPILE)ar
56
cd932c59
IM
57# Additional ARCH settings for x86
58ifeq ($(ARCH),i386)
59 ARCH := x86
60endif
61ifeq ($(ARCH),x86_64)
174a7b1f 62 ARCH := x86
08a4a43f
DA
63 IS_X86_64 := 0
64 ifeq (, $(findstring m32,$(EXTRA_CFLAGS)))
65 IS_X86_64 := $(shell echo __x86_64__ | ${CC} -E -xc - | tail -n 1)
66 endif
174a7b1f
LM
67 ifeq (${IS_X86_64}, 1)
68 RAW_ARCH := x86_64
69 ARCH_CFLAGS := -DARCH_X86_64
be3de80d 70 ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S ../../arch/x86/lib/memset_64.S
174a7b1f 71 endif
cd932c59
IM
72endif
73
9e59e099
DH
74# Treat warnings as errors unless directed not to
75ifneq ($(WERROR),0)
76 CFLAGS_WERROR := -Werror
77endif
78
60d526f7
SR
79ifeq ("$(origin DEBUG)", "command line")
80 PERF_DEBUG = $(DEBUG)
81endif
82ifndef PERF_DEBUG
83 CFLAGS_OPTIMIZE = -O6
84endif
85
9e59e099 86CFLAGS = -fno-omit-frame-pointer -ggdb3 -Wall -Wextra -std=gnu99 $(CFLAGS_WERROR) $(CFLAGS_OPTIMIZE) -D_FORTIFY_SOURCE=2 $(EXTRA_WARNINGS) $(EXTRA_CFLAGS)
75138650 87EXTLIBS = -lpthread -lrt -lelf -lm
2ef1ea38 88ALL_CFLAGS = $(CFLAGS) -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
d24e473e
IM
89ALL_LDFLAGS = $(LDFLAGS)
90STRIP ?= strip
91
92# Among the variables below, these:
07800601 93# perfexecdir
d24e473e
IM
94# template_dir
95# mandir
96# infodir
97# htmldir
07800601 98# ETC_PERFCONFIG (but not sysconfdir)
d24e473e 99# can be specified as a relative path some/where/else;
07800601 100# this is interpreted as relative to $(prefix) and "perf" at
d24e473e
IM
101# runtime figures out where they are based on the path to the executable.
102# This can help installing the suite in a relocatable way.
103
7ae5f213
JK
104# Make the path relative to DESTDIR, not to prefix
105ifndef DESTDIR
d24e473e 106prefix = $(HOME)
7ae5f213 107endif
d24e473e
IM
108bindir_relative = bin
109bindir = $(prefix)/$(bindir_relative)
110mandir = share/man
111infodir = share/info
07800601 112perfexecdir = libexec/perf-core
d24e473e 113sharedir = $(prefix)/share
07800601
IM
114template_dir = share/perf-core/templates
115htmldir = share/doc/perf-doc
d24e473e
IM
116ifeq ($(prefix),/usr)
117sysconfdir = /etc
07800601 118ETC_PERFCONFIG = $(sysconfdir)/perfconfig
d24e473e
IM
119else
120sysconfdir = $(prefix)/etc
07800601 121ETC_PERFCONFIG = etc/perfconfig
d24e473e
IM
122endif
123lib = lib
d24e473e 124
d24e473e
IM
125export prefix bindir sharedir sysconfdir
126
d24e473e 127RM = rm -f
033a273f 128MKDIR = mkdir
d24e473e
IM
129FIND = find
130INSTALL = install
d24e473e 131
d24e473e
IM
132# sparse is architecture-neutral, which means that we need to tell it
133# explicitly what architecture to check for. Fix this up for yours..
134SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
135
f18568aa 136-include config/feature-tests.mak
1703f2c3 137
f9af3a4c
ACM
138ifeq ($(call try-cc,$(SOURCE_HELLO),-Werror -fstack-protector-all),y)
139 CFLAGS := $(CFLAGS) -fstack-protector-all
5d7bdab7 140endif
d24e473e 141
065bef5a
ACM
142ifeq ($(call try-cc,$(SOURCE_HELLO),-Werror -Wstack-protector),y)
143 CFLAGS := $(CFLAGS) -Wstack-protector
144endif
145
146ifeq ($(call try-cc,$(SOURCE_HELLO),-Werror -Wvolatile-register-var),y)
147 CFLAGS := $(CFLAGS) -Wvolatile-register-var
148endif
d24e473e
IM
149
150### --- END CONFIGURATION SECTION ---
151
65f3e56e 152BASIC_CFLAGS = -Iutil/include -Iarch/$(ARCH)/include -I$(OUTPUT)/util -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
d24e473e
IM
153BASIC_LDFLAGS =
154
155# Guard against environment variables
156BUILTIN_OBJS =
d24e473e
IM
157LIB_H =
158LIB_OBJS =
877108e4 159PYRF_OBJS =
d24e473e 160SCRIPT_SH =
d24e473e 161
2c585174 162SCRIPT_SH += perf-archive.sh
07800601 163
f2481f3d
TZ
164grep-libs = $(filter -l%,$(1))
165strip-libs = $(filter-out -l%,$(1))
166
6a5c13af
NK
167PYTHON_EXT_SRCS := $(shell grep -v ^\# util/python-ext-sources)
168PYTHON_EXT_DEPS := util/python-ext-sources util/setup.py
169
170$(OUTPUT)python/perf.so: $(PYRF_OBJS) $(PYTHON_EXT_SRCS) $(PYTHON_EXT_DEPS)
ced465c4 171 $(QUIET_GEN)CFLAGS='$(BASIC_CFLAGS)' $(PYTHON_WORD) util/setup.py \
9941c96a
JO
172 --quiet build_ext; \
173 mkdir -p $(OUTPUT)python && \
174 cp $(PYTHON_EXTBUILD_LIB)perf.so $(OUTPUT)python/
07800601
IM
175#
176# No Perl scripts right now:
177#
178
0a54fb63 179SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH))
d24e473e 180
07800601 181#
125e702b 182# Single 'perf' binary right now:
07800601 183#
c29ede61 184PROGRAMS += $(OUTPUT)perf
d24e473e 185
978f626c 186LANG_BINDINGS =
067187fc 187
07800601 188# what 'all' will build and 'install' will install, in perfexecdir
978f626c 189ALL_PROGRAMS = $(PROGRAMS) $(SCRIPTS)
d24e473e 190
07800601 191# what 'all' will build but not install in perfexecdir
8796cb9d 192OTHER_PROGRAMS = $(OUTPUT)perf
d24e473e
IM
193
194# Set paths to tools early so that they can be used for version tests.
195ifndef SHELL_PATH
196 SHELL_PATH = /bin/sh
197endif
198ifndef PERL_PATH
199 PERL_PATH = /usr/bin/perl
200endif
201
202export PERL_PATH
203
65f3e56e
IM
204FLEX = $(CROSS_COMPILE)flex
205BISON= $(CROSS_COMPILE)bison
206
024e6c97 207$(OUTPUT)util/parse-events-flex.c: util/parse-events.l
65f3e56e
IM
208 $(QUIET_FLEX)$(FLEX) --header-file=$(OUTPUT)util/parse-events-flex.h -t util/parse-events.l > $(OUTPUT)util/parse-events-flex.c
209
024e6c97
JO
210$(OUTPUT)util/parse-events-bison.c: util/parse-events.y
211 $(QUIET_BISON)$(BISON) -v util/parse-events.y -d -o $(OUTPUT)util/parse-events-bison.c
65f3e56e 212
024e6c97 213$(OUTPUT)util/pmu-flex.c: util/pmu.l
65f3e56e
IM
214 $(QUIET_FLEX)$(FLEX) --header-file=$(OUTPUT)util/pmu-flex.h -t util/pmu.l > $(OUTPUT)util/pmu-flex.c
215
024e6c97
JO
216$(OUTPUT)util/pmu-bison.c: util/pmu.y
217 $(QUIET_BISON)$(BISON) -v util/pmu.y -d -o $(OUTPUT)util/pmu-bison.c
65f3e56e 218
024e6c97
JO
219$(OUTPUT)util/parse-events.o: $(OUTPUT)util/parse-events-flex.c $(OUTPUT)util/parse-events-bison.c
220$(OUTPUT)util/pmu.o: $(OUTPUT)util/pmu-flex.c $(OUTPUT)util/pmu-bison.c
65f3e56e 221
c29ede61 222LIB_FILE=$(OUTPUT)libperf.a
07800601 223
cdd6c482 224LIB_H += ../../include/linux/perf_event.h
43cbcd8a 225LIB_H += ../../include/linux/rbtree.h
5da50258 226LIB_H += ../../include/linux/list.h
75911c9b 227LIB_H += ../../include/linux/const.h
18e97e06 228LIB_H += ../../include/linux/hash.h
9769833b 229LIB_H += ../../include/linux/stringify.h
79b9ad36
ACM
230LIB_H += util/include/linux/bitmap.h
231LIB_H += util/include/linux/bitops.h
232LIB_H += util/include/linux/compiler.h
75911c9b 233LIB_H += util/include/linux/const.h
79b9ad36
ACM
234LIB_H += util/include/linux/ctype.h
235LIB_H += util/include/linux/kernel.h
5da50258 236LIB_H += util/include/linux/list.h
2c86bf17 237LIB_H += util/include/linux/export.h
79b9ad36
ACM
238LIB_H += util/include/linux/poison.h
239LIB_H += util/include/linux/prefetch.h
240LIB_H += util/include/linux/rbtree.h
20639c15 241LIB_H += util/include/linux/string.h
79b9ad36 242LIB_H += util/include/linux/types.h
ea7872b9 243LIB_H += util/include/linux/linkage.h
79b9ad36 244LIB_H += util/include/asm/asm-offsets.h
049ae80b 245LIB_H += util/include/asm/bug.h
79b9ad36 246LIB_H += util/include/asm/byteorder.h
fb72014d 247LIB_H += util/include/asm/hweight.h
79b9ad36
ACM
248LIB_H += util/include/asm/swab.h
249LIB_H += util/include/asm/system.h
79b9ad36 250LIB_H += util/include/asm/uaccess.h
cd932c59 251LIB_H += util/include/dwarf-regs.h
ea7872b9
HM
252LIB_H += util/include/asm/dwarf2.h
253LIB_H += util/include/asm/cpufeature.h
eae7a755
IM
254LIB_H += util/include/asm/unistd_32.h
255LIB_H += util/include/asm/unistd_64.h
6eda5838 256LIB_H += perf.h
78f7defe 257LIB_H += util/annotate.h
049ae80b
ACM
258LIB_H += util/cache.h
259LIB_H += util/callchain.h
7b2567c1 260LIB_H += util/build-id.h
049ae80b 261LIB_H += util/debug.h
afe61f67 262LIB_H += util/debugfs.h
e90fda06 263LIB_H += util/sysfs.h
cd82a32e 264LIB_H += util/pmu.h
ec218fc4 265LIB_H += util/event.h
69aad6f1 266LIB_H += util/evsel.h
361c99a6 267LIB_H += util/evlist.h
049ae80b 268LIB_H += util/exec_cmd.h
7c6a1c65 269LIB_H += util/types.h
148be2c1 270LIB_H += util/levenshtein.h
4a58e611 271LIB_H += util/map.h
148be2c1 272LIB_H += util/parse-options.h
8ad8db37 273LIB_H += util/parse-events.h
148be2c1
IM
274LIB_H += util/quote.h
275LIB_H += util/util.h
69aad6f1 276LIB_H += util/xyarray.h
94c744b6 277LIB_H += util/header.h
148be2c1 278LIB_H += util/help.h
94c744b6 279LIB_H += util/session.h
148be2c1 280LIB_H += util/strbuf.h
25903407 281LIB_H += util/strlist.h
68baa431 282LIB_H += util/strfilter.h
049ae80b 283LIB_H += util/svghelper.h
45694aa7 284LIB_H += util/tool.h
148be2c1 285LIB_H += util/run-command.h
a930d2c0 286LIB_H += util/sigchain.h
a2928c42 287LIB_H += util/symbol.h
8fc0321f 288LIB_H += util/color.h
8d513270 289LIB_H += util/values.h
dd68ada2 290LIB_H += util/sort.h
3d1d07ec 291LIB_H += util/hist.h
1b46cddf 292LIB_H += util/thread.h
fd78260b 293LIB_H += util/thread_map.h
049ae80b 294LIB_H += util/trace-event.h
57d250df 295LIB_H += util/probe-finder.h
e0d153c6 296LIB_H += util/dwarf-aux.h
50656eec 297LIB_H += util/probe-event.h
3e1bbdc3 298LIB_H += util/pstack.h
a12b51c4 299LIB_H += util/cpumap.h
8c3e10eb 300LIB_H += util/top.h
ea7872b9 301LIB_H += $(ARCH_INCLUDE)
023695d9 302LIB_H += util/cgroup.h
148be2c1 303
c29ede61
ACM
304LIB_OBJS += $(OUTPUT)util/abspath.o
305LIB_OBJS += $(OUTPUT)util/alias.o
78f7defe 306LIB_OBJS += $(OUTPUT)util/annotate.o
c29ede61
ACM
307LIB_OBJS += $(OUTPUT)util/build-id.o
308LIB_OBJS += $(OUTPUT)util/config.o
309LIB_OBJS += $(OUTPUT)util/ctype.o
310LIB_OBJS += $(OUTPUT)util/debugfs.o
e90fda06 311LIB_OBJS += $(OUTPUT)util/sysfs.o
cd82a32e 312LIB_OBJS += $(OUTPUT)util/pmu.o
c29ede61
ACM
313LIB_OBJS += $(OUTPUT)util/environment.o
314LIB_OBJS += $(OUTPUT)util/event.o
361c99a6 315LIB_OBJS += $(OUTPUT)util/evlist.o
69aad6f1 316LIB_OBJS += $(OUTPUT)util/evsel.o
c29ede61
ACM
317LIB_OBJS += $(OUTPUT)util/exec_cmd.o
318LIB_OBJS += $(OUTPUT)util/help.o
319LIB_OBJS += $(OUTPUT)util/levenshtein.o
320LIB_OBJS += $(OUTPUT)util/parse-options.o
321LIB_OBJS += $(OUTPUT)util/parse-events.o
322LIB_OBJS += $(OUTPUT)util/path.o
323LIB_OBJS += $(OUTPUT)util/rbtree.o
324LIB_OBJS += $(OUTPUT)util/bitmap.o
325LIB_OBJS += $(OUTPUT)util/hweight.o
c29ede61
ACM
326LIB_OBJS += $(OUTPUT)util/run-command.o
327LIB_OBJS += $(OUTPUT)util/quote.o
328LIB_OBJS += $(OUTPUT)util/strbuf.o
329LIB_OBJS += $(OUTPUT)util/string.o
330LIB_OBJS += $(OUTPUT)util/strlist.o
68baa431 331LIB_OBJS += $(OUTPUT)util/strfilter.o
8c3e10eb 332LIB_OBJS += $(OUTPUT)util/top.o
c29ede61
ACM
333LIB_OBJS += $(OUTPUT)util/usage.o
334LIB_OBJS += $(OUTPUT)util/wrapper.o
335LIB_OBJS += $(OUTPUT)util/sigchain.o
336LIB_OBJS += $(OUTPUT)util/symbol.o
337LIB_OBJS += $(OUTPUT)util/color.o
338LIB_OBJS += $(OUTPUT)util/pager.o
339LIB_OBJS += $(OUTPUT)util/header.o
340LIB_OBJS += $(OUTPUT)util/callchain.o
341LIB_OBJS += $(OUTPUT)util/values.o
342LIB_OBJS += $(OUTPUT)util/debug.o
343LIB_OBJS += $(OUTPUT)util/map.o
3e1bbdc3 344LIB_OBJS += $(OUTPUT)util/pstack.o
c29ede61
ACM
345LIB_OBJS += $(OUTPUT)util/session.o
346LIB_OBJS += $(OUTPUT)util/thread.o
fd78260b 347LIB_OBJS += $(OUTPUT)util/thread_map.o
c29ede61 348LIB_OBJS += $(OUTPUT)util/trace-event-parse.o
89812fc8
JO
349LIB_OBJS += $(OUTPUT)util/parse-events-flex.o
350LIB_OBJS += $(OUTPUT)util/parse-events-bison.o
cd82a32e
JO
351LIB_OBJS += $(OUTPUT)util/pmu-flex.o
352LIB_OBJS += $(OUTPUT)util/pmu-bison.o
c29ede61
ACM
353LIB_OBJS += $(OUTPUT)util/trace-event-read.o
354LIB_OBJS += $(OUTPUT)util/trace-event-info.o
355LIB_OBJS += $(OUTPUT)util/trace-event-scripting.o
356LIB_OBJS += $(OUTPUT)util/svghelper.o
357LIB_OBJS += $(OUTPUT)util/sort.o
358LIB_OBJS += $(OUTPUT)util/hist.o
359LIB_OBJS += $(OUTPUT)util/probe-event.o
360LIB_OBJS += $(OUTPUT)util/util.o
69aad6f1 361LIB_OBJS += $(OUTPUT)util/xyarray.o
c29ede61 362LIB_OBJS += $(OUTPUT)util/cpumap.o
023695d9 363LIB_OBJS += $(OUTPUT)util/cgroup.o
c29ede61
ACM
364
365BUILTIN_OBJS += $(OUTPUT)builtin-annotate.o
366
367BUILTIN_OBJS += $(OUTPUT)builtin-bench.o
bfde82ef
HM
368
369# Benchmark modules
c29ede61
ACM
370BUILTIN_OBJS += $(OUTPUT)bench/sched-messaging.o
371BUILTIN_OBJS += $(OUTPUT)bench/sched-pipe.o
ea7872b9
HM
372ifeq ($(RAW_ARCH),x86_64)
373BUILTIN_OBJS += $(OUTPUT)bench/mem-memcpy-x86-64-asm.o
be3de80d 374BUILTIN_OBJS += $(OUTPUT)bench/mem-memset-x86-64-asm.o
ea7872b9 375endif
c29ede61 376BUILTIN_OBJS += $(OUTPUT)bench/mem-memcpy.o
be3de80d 377BUILTIN_OBJS += $(OUTPUT)bench/mem-memset.o
c29ede61
ACM
378
379BUILTIN_OBJS += $(OUTPUT)builtin-diff.o
43adec95 380BUILTIN_OBJS += $(OUTPUT)builtin-evlist.o
c29ede61
ACM
381BUILTIN_OBJS += $(OUTPUT)builtin-help.o
382BUILTIN_OBJS += $(OUTPUT)builtin-sched.o
383BUILTIN_OBJS += $(OUTPUT)builtin-buildid-list.o
384BUILTIN_OBJS += $(OUTPUT)builtin-buildid-cache.o
385BUILTIN_OBJS += $(OUTPUT)builtin-list.o
386BUILTIN_OBJS += $(OUTPUT)builtin-record.o
387BUILTIN_OBJS += $(OUTPUT)builtin-report.o
388BUILTIN_OBJS += $(OUTPUT)builtin-stat.o
389BUILTIN_OBJS += $(OUTPUT)builtin-timechart.o
390BUILTIN_OBJS += $(OUTPUT)builtin-top.o
133dc4c3 391BUILTIN_OBJS += $(OUTPUT)builtin-script.o
c29ede61
ACM
392BUILTIN_OBJS += $(OUTPUT)builtin-probe.o
393BUILTIN_OBJS += $(OUTPUT)builtin-kmem.o
394BUILTIN_OBJS += $(OUTPUT)builtin-lock.o
a1645ce1 395BUILTIN_OBJS += $(OUTPUT)builtin-kvm.o
1c6a800c 396BUILTIN_OBJS += $(OUTPUT)builtin-test.o
454c407e 397BUILTIN_OBJS += $(OUTPUT)builtin-inject.o
07800601
IM
398
399PERFLIBS = $(LIB_FILE)
d24e473e 400
877108e4
ACM
401# Files needed for the python binding, perf.so
402# pyrf is just an internal name needed for all those wrappers.
403# This has to be in sync with what is in the 'sources' variable in
404# tools/perf/util/setup.py
405
406PYRF_OBJS += $(OUTPUT)util/cpumap.o
407PYRF_OBJS += $(OUTPUT)util/ctype.o
408PYRF_OBJS += $(OUTPUT)util/evlist.o
409PYRF_OBJS += $(OUTPUT)util/evsel.o
410PYRF_OBJS += $(OUTPUT)util/python.o
411PYRF_OBJS += $(OUTPUT)util/thread_map.o
412PYRF_OBJS += $(OUTPUT)util/util.o
413PYRF_OBJS += $(OUTPUT)util/xyarray.o
414
d24e473e
IM
415#
416# Platform specific tweaks
417#
418
419# We choose to avoid "if .. else if .. else .. endif endif"
420# because maintaining the nesting to match is a pain. If
421# we had "elif" things would have been much nicer...
422
d24e473e
IM
423-include config.mak.autogen
424-include config.mak
425
cd932c59 426ifndef NO_DWARF
a7112397 427FLAGS_DWARF=$(ALL_CFLAGS) -ldw -lelf $(ALL_LDFLAGS) $(EXTLIBS)
f9af3a4c 428ifneq ($(call try-cc,$(SOURCE_DWARF),$(FLAGS_DWARF)),y)
6b3c4ef5 429 msg := $(warning No libdw.h found or old libdw.h found or elfutils is older than 0.138, disables dwarf support. Please install new elfutils-devel/libdw-dev);
cd932c59
IM
430 NO_DWARF := 1
431endif # Dwarf support
432endif # NO_DWARF
433
434-include arch/$(ARCH)/Makefile
435
c29ede61
ACM
436ifneq ($(OUTPUT),)
437 BASIC_CFLAGS += -I$(OUTPUT)
438endif
439
f9af3a4c
ACM
440FLAGS_LIBELF=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS)
441ifneq ($(call try-cc,$(SOURCE_LIBELF),$(FLAGS_LIBELF)),y)
442 FLAGS_GLIBC=$(ALL_CFLAGS) $(ALL_LDFLAGS)
443 ifneq ($(call try-cc,$(SOURCE_GLIBC),$(FLAGS_GLIBC)),y)
444 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
445 else
446 msg := $(error No libelf.h/libelf found, please install libelf-dev/elfutils-libelf-devel);
447 endif
1abc7f55
RD
448endif
449
f9af3a4c
ACM
450ifneq ($(call try-cc,$(SOURCE_ELF_MMAP),$(FLAGS_COMMON)),y)
451 BASIC_CFLAGS += -DLIBELF_NO_MMAP
9424edc2
PZ
452endif
453
ca721e45 454ifndef NO_DWARF
cd932c59
IM
455ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
456 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
457else
a7112397 458 BASIC_CFLAGS += -DDWARF_SUPPORT
804b3606 459 EXTLIBS += -lelf -ldw
c29ede61 460 LIB_OBJS += $(OUTPUT)util/probe-finder.o
e0d153c6 461 LIB_OBJS += $(OUTPUT)util/dwarf-aux.o
cd932c59
IM
462endif # PERF_HAVE_DWARF_REGS
463endif # NO_DWARF
4ea42b18 464
94f3ca95
ACM
465ifdef NO_NEWT
466 BASIC_CFLAGS += -DNO_NEWT_SUPPORT
467else
f9af3a4c
ACM
468 FLAGS_NEWT=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS) -lnewt
469 ifneq ($(call try-cc,$(SOURCE_NEWT),$(FLAGS_NEWT)),y)
470 msg := $(warning newt not found, disables TUI support. Please install newt-devel or libnewt-dev);
471 BASIC_CFLAGS += -DNO_NEWT_SUPPORT
472 else
473 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
474 BASIC_CFLAGS += -I/usr/include/slang
475 EXTLIBS += -lnewt -lslang
aca7a94d
NK
476 LIB_OBJS += $(OUTPUT)ui/setup.o
477 LIB_OBJS += $(OUTPUT)ui/browser.o
478 LIB_OBJS += $(OUTPUT)ui/browsers/annotate.o
479 LIB_OBJS += $(OUTPUT)ui/browsers/hists.o
480 LIB_OBJS += $(OUTPUT)ui/browsers/map.o
481 LIB_OBJS += $(OUTPUT)ui/helpline.o
482 LIB_OBJS += $(OUTPUT)ui/progress.o
483 LIB_OBJS += $(OUTPUT)ui/util.o
484 LIB_H += ui/browser.h
485 LIB_H += ui/browsers/map.h
486 LIB_H += ui/helpline.h
487 LIB_H += ui/keysyms.h
488 LIB_H += ui/libslang.h
489 LIB_H += ui/progress.h
490 LIB_H += ui/util.h
491 LIB_H += ui/ui.h
f9af3a4c 492 endif
cc835752 493endif
16c632de 494
c31a9457
PE
495ifdef NO_GTK2
496 BASIC_CFLAGS += -DNO_GTK2
497else
498 FLAGS_GTK2=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS) $(shell pkg-config --libs --cflags gtk+-2.0)
499 ifneq ($(call try-cc,$(SOURCE_GTK2),$(FLAGS_GTK2)),y)
500 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
501 BASIC_CFLAGS += -DNO_GTK2_SUPPORT
502 else
503 BASIC_CFLAGS += $(shell pkg-config --cflags gtk+-2.0)
504 EXTLIBS += $(shell pkg-config --libs gtk+-2.0)
505 LIB_OBJS += $(OUTPUT)util/gtk/browser.o
506 endif
507endif
508
f9af3a4c 509ifdef NO_LIBPERL
16c632de
TZ
510 BASIC_CFLAGS += -DNO_LIBPERL
511else
f2481f3d
TZ
512 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
513 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
514 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
f9af3a4c 515 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
bfde7448 516 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
16c632de 517
f9af3a4c
ACM
518 ifneq ($(call try-cc,$(SOURCE_PERL_EMBED),$(FLAGS_PERL_EMBED)),y)
519 BASIC_CFLAGS += -DNO_LIBPERL
520 else
f2481f3d
TZ
521 ALL_LDFLAGS += $(PERL_EMBED_LDFLAGS)
522 EXTLIBS += $(PERL_EMBED_LIBADD)
f9af3a4c
ACM
523 LIB_OBJS += $(OUTPUT)util/scripting-engines/trace-event-perl.o
524 LIB_OBJS += $(OUTPUT)scripts/perl/Perf-Trace-Util/Context.o
525 endif
7e4b21b8
TZ
526endif
527
ced465c4
MW
528disable-python = $(eval $(disable-python_code))
529define disable-python_code
530 BASIC_CFLAGS += -DNO_LIBPYTHON
531 $(if $(1),$(warning No $(1) was found))
532 $(warning Python support won't be built)
533endef
534
535override PYTHON := \
536 $(call get-executable-or-default,PYTHON,python)
537
538ifndef PYTHON
539 $(call disable-python,python interpreter)
540 python-clean :=
7e4b21b8 541else
ced465c4
MW
542
543 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
544
9941c96a
JO
545 # python extension build directories
546 PYTHON_EXTBUILD := $(OUTPUT)python_ext_build/
547 PYTHON_EXTBUILD_LIB := $(PYTHON_EXTBUILD)lib/
548 PYTHON_EXTBUILD_TMP := $(PYTHON_EXTBUILD)tmp/
549 export PYTHON_EXTBUILD_LIB PYTHON_EXTBUILD_TMP
550
551 python-clean := rm -rf $(PYTHON_EXTBUILD) $(OUTPUT)python/perf.so
ced465c4
MW
552
553 ifdef NO_LIBPYTHON
554 $(call disable-python)
555 else
556
557 override PYTHON_CONFIG := \
558 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
559
560 ifndef PYTHON_CONFIG
561 $(call disable-python,python-config tool)
562 else
563
564 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
565
566 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
567 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
568 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
569 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
570 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
571
572 ifneq ($(call try-cc,$(SOURCE_PYTHON_EMBED),$(FLAGS_PYTHON_EMBED)),y)
573 $(call disable-python,Python.h (for Python 2.x))
574 else
575
576 ifneq ($(call try-cc,$(SOURCE_PYTHON_VERSION),$(FLAGS_PYTHON_EMBED)),y)
577 $(warning Python 3 is not yet supported; please set)
578 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
579 $(warning If you also have Python 2 installed, then)
580 $(warning try something like:)
581 $(warning $(and ,))
582 $(warning $(and ,) make PYTHON=python2)
583 $(warning $(and ,))
584 $(warning Otherwise, disable Python support entirely:)
585 $(warning $(and ,))
586 $(warning $(and ,) make NO_LIBPYTHON=1)
587 $(warning $(and ,))
588 $(error $(and ,))
589 else
590 ALL_LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
591 EXTLIBS += $(PYTHON_EMBED_LIBADD)
592 LIB_OBJS += $(OUTPUT)util/scripting-engines/trace-event-python.o
593 LIB_OBJS += $(OUTPUT)scripts/python/Perf-Trace-Util/Context.o
594 LANG_BINDINGS += $(OUTPUT)python/perf.so
595 endif
596
597 endif
598 endif
599 endif
7e4b21b8
TZ
600endif
601
2cdbc46d
PZ
602ifdef NO_DEMANGLE
603 BASIC_CFLAGS += -DNO_DEMANGLE
604else
167a58f1
CS
605 ifdef HAVE_CPLUS_DEMANGLE
606 EXTLIBS += -liberty
607 BASIC_CFLAGS += -DHAVE_CPLUS_DEMANGLE
608 else
609 FLAGS_BFD=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS) -lbfd
610 has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD))
611 ifeq ($(has_bfd),y)
612 EXTLIBS += -lbfd
247648e3 613 else
167a58f1
CS
614 FLAGS_BFD_IBERTY=$(FLAGS_BFD) -liberty
615 has_bfd_iberty := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY))
616 ifeq ($(has_bfd_iberty),y)
617 EXTLIBS += -lbfd -liberty
247648e3 618 else
167a58f1
CS
619 FLAGS_BFD_IBERTY_Z=$(FLAGS_BFD_IBERTY) -lz
620 has_bfd_iberty_z := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY_Z))
621 ifeq ($(has_bfd_iberty_z),y)
622 EXTLIBS += -lbfd -liberty -lz
247648e3 623 else
167a58f1
CS
624 FLAGS_CPLUS_DEMANGLE=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS) -liberty
625 has_cplus_demangle := $(call try-cc,$(SOURCE_CPLUS_DEMANGLE),$(FLAGS_CPLUS_DEMANGLE))
626 ifeq ($(has_cplus_demangle),y)
627 EXTLIBS += -liberty
628 BASIC_CFLAGS += -DHAVE_CPLUS_DEMANGLE
629 else
630 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
631 BASIC_CFLAGS += -DNO_DEMANGLE
632 endif
247648e3
ACM
633 endif
634 endif
635 endif
2cdbc46d
PZ
636 endif
637endif
638
f4e7ac0a
KS
639
640ifdef NO_STRLCPY
641 BASIC_CFLAGS += -DNO_STRLCPY
642else
643 ifneq ($(call try-cc,$(SOURCE_STRLCPY),),y)
644 BASIC_CFLAGS += -DNO_STRLCPY
645 endif
646endif
647
d24e473e
IM
648ifdef ASCIIDOC8
649 export ASCIIDOC8
650endif
651
652# Shell quote (do not use $(call) to accommodate ancient setups);
653
07800601 654ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
d24e473e
IM
655
656DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
657bindir_SQ = $(subst ','\'',$(bindir))
658bindir_relative_SQ = $(subst ','\'',$(bindir_relative))
659mandir_SQ = $(subst ','\'',$(mandir))
660infodir_SQ = $(subst ','\'',$(infodir))
07800601 661perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
d24e473e
IM
662template_dir_SQ = $(subst ','\'',$(template_dir))
663htmldir_SQ = $(subst ','\'',$(htmldir))
664prefix_SQ = $(subst ','\'',$(prefix))
665
666SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
d24e473e 667
203db295 668LIBS = -Wl,--whole-archive $(PERFLIBS) -Wl,--no-whole-archive -Wl,--start-group $(EXTLIBS) -Wl,--end-group
d24e473e 669
d24e473e 670ALL_CFLAGS += $(BASIC_CFLAGS)
ea7872b9 671ALL_CFLAGS += $(ARCH_CFLAGS)
d24e473e
IM
672ALL_LDFLAGS += $(BASIC_LDFLAGS)
673
a3d1ee10 674export INSTALL SHELL_PATH
d24e473e
IM
675
676
677### Build rules
678
679SHELL = $(SHELL_PATH)
680
a3d1ee10 681all: shell_compatibility_test $(ALL_PROGRAMS) $(LANG_BINDINGS) $(OTHER_PROGRAMS)
d24e473e
IM
682
683please_set_SHELL_PATH_to_a_more_modern_shell:
684 @$$(:)
685
686shell_compatibility_test: please_set_SHELL_PATH_to_a_more_modern_shell
687
8796cb9d
MW
688strip: $(PROGRAMS) $(OUTPUT)perf
689 $(STRIP) $(STRIP_OPTS) $(PROGRAMS) $(OUTPUT)perf
d24e473e 690
c29ede61 691$(OUTPUT)perf.o: perf.c $(OUTPUT)common-cmds.h $(OUTPUT)PERF-CFLAGS
07800601
IM
692 $(QUIET_CC)$(CC) -DPERF_VERSION='"$(PERF_VERSION)"' \
693 '-DPERF_HTML_PATH="$(htmldir_SQ)"' \
c29ede61 694 $(ALL_CFLAGS) -c $(filter %.c,$^) -o $@
d24e473e 695
8796cb9d 696$(OUTPUT)perf: $(OUTPUT)perf.o $(BUILTIN_OBJS) $(PERFLIBS)
f2481f3d
TZ
697 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) $(ALL_LDFLAGS) $(OUTPUT)perf.o \
698 $(BUILTIN_OBJS) $(LIBS) -o $@
d24e473e 699
c29ede61
ACM
700$(OUTPUT)builtin-help.o: builtin-help.c $(OUTPUT)common-cmds.h $(OUTPUT)PERF-CFLAGS
701 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) \
07800601
IM
702 '-DPERF_HTML_PATH="$(htmldir_SQ)"' \
703 '-DPERF_MAN_PATH="$(mandir_SQ)"' \
10274989
AV
704 '-DPERF_INFO_PATH="$(infodir_SQ)"' $<
705
c29ede61
ACM
706$(OUTPUT)builtin-timechart.o: builtin-timechart.c $(OUTPUT)common-cmds.h $(OUTPUT)PERF-CFLAGS
707 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) \
10274989
AV
708 '-DPERF_HTML_PATH="$(htmldir_SQ)"' \
709 '-DPERF_MAN_PATH="$(mandir_SQ)"' \
07800601 710 '-DPERF_INFO_PATH="$(infodir_SQ)"' $<
d24e473e 711
c29ede61 712$(OUTPUT)common-cmds.h: util/generate-cmdlist.sh command-list.txt
d24e473e 713
c29ede61 714$(OUTPUT)common-cmds.h: $(wildcard Documentation/perf-*.txt)
1ad0560e 715 $(QUIET_GEN). util/generate-cmdlist.sh > $@+ && mv $@+ $@
d24e473e 716
a3d1ee10
MW
717$(SCRIPTS) : % : %.sh
718 $(QUIET_GEN)$(INSTALL) '$@.sh' '$(OUTPUT)$@'
d24e473e 719
07800601 720# These can record PERF_VERSION
c29ede61 721$(OUTPUT)perf.o perf.spec \
a3d1ee10 722 $(SCRIPTS) \
c29ede61 723 : $(OUTPUT)PERF-VERSION-FILE
d24e473e 724
89812fc8
JO
725.SUFFIXES:
726.SUFFIXES: .o .c .S .s
727
65f3e56e
IM
728# These two need to be here so that when O= is not used they take precedence
729# over the general rule for .o
730
731$(OUTPUT)util/%-flex.o: $(OUTPUT)util/%-flex.c $(OUTPUT)PERF-CFLAGS
732 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -Iutil/ -Wno-redundant-decls -Wno-switch-default -Wno-unused-function $<
733
734$(OUTPUT)util/%-bison.o: $(OUTPUT)util/%-bison.c $(OUTPUT)PERF-CFLAGS
735 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DYYENABLE_NLS=0 -DYYLTYPE_IS_TRIVIAL=0 -Iutil/ -Wno-redundant-decls -Wno-switch-default -Wno-unused-function $<
736
c29ede61
ACM
737$(OUTPUT)%.o: %.c $(OUTPUT)PERF-CFLAGS
738 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $<
4a3d2d9b
JB
739$(OUTPUT)%.i: %.c $(OUTPUT)PERF-CFLAGS
740 $(QUIET_CC)$(CC) -o $@ -E $(ALL_CFLAGS) $<
c29ede61 741$(OUTPUT)%.s: %.c $(OUTPUT)PERF-CFLAGS
4a3d2d9b 742 $(QUIET_CC)$(CC) -o $@ -S $(ALL_CFLAGS) $<
c29ede61
ACM
743$(OUTPUT)%.o: %.S
744 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $<
4a3d2d9b
JB
745$(OUTPUT)%.s: %.S
746 $(QUIET_CC)$(CC) -o $@ -E $(ALL_CFLAGS) $<
d24e473e 747
c29ede61
ACM
748$(OUTPUT)util/exec_cmd.o: util/exec_cmd.c $(OUTPUT)PERF-CFLAGS
749 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) \
07800601 750 '-DPERF_EXEC_PATH="$(perfexecdir_SQ)"' \
d24e473e
IM
751 '-DBINDIR="$(bindir_relative_SQ)"' \
752 '-DPREFIX="$(prefix_SQ)"' \
753 $<
754
c29ede61
ACM
755$(OUTPUT)util/config.o: util/config.c $(OUTPUT)PERF-CFLAGS
756 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DETC_PERFCONFIG='"$(ETC_PERFCONFIG_SQ)"' $<
d24e473e 757
aca7a94d 758$(OUTPUT)ui/browser.o: ui/browser.c $(OUTPUT)PERF-CFLAGS
ef8f34aa
ACM
759 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DENABLE_SLFUTURE_CONST $<
760
aca7a94d 761$(OUTPUT)ui/browsers/annotate.o: ui/browsers/annotate.c $(OUTPUT)PERF-CFLAGS
211ef127
ACM
762 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DENABLE_SLFUTURE_CONST $<
763
aca7a94d 764$(OUTPUT)ui/browsers/hists.o: ui/browsers/hists.c $(OUTPUT)PERF-CFLAGS
d1b4f249
ACM
765 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DENABLE_SLFUTURE_CONST $<
766
aca7a94d 767$(OUTPUT)ui/browsers/map.o: ui/browsers/map.c $(OUTPUT)PERF-CFLAGS
b1b02673
ACM
768 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DENABLE_SLFUTURE_CONST $<
769
c29ede61
ACM
770$(OUTPUT)util/rbtree.o: ../../lib/rbtree.c $(OUTPUT)PERF-CFLAGS
771 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DETC_PERFCONFIG='"$(ETC_PERFCONFIG_SQ)"' $<
43cbcd8a 772
c29ede61
ACM
773$(OUTPUT)util/scripting-engines/trace-event-perl.o: util/scripting-engines/trace-event-perl.c $(OUTPUT)PERF-CFLAGS
774 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $(PERL_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prototypes -Wno-unused-parameter -Wno-shadow $<
16c632de 775
c29ede61
ACM
776$(OUTPUT)scripts/perl/Perf-Trace-Util/Context.o: scripts/perl/Perf-Trace-Util/Context.c $(OUTPUT)PERF-CFLAGS
777 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $(PERL_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prototypes -Wno-unused-parameter -Wno-nested-externs $<
d1b93772 778
c29ede61
ACM
779$(OUTPUT)util/scripting-engines/trace-event-python.o: util/scripting-engines/trace-event-python.c $(OUTPUT)PERF-CFLAGS
780 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $(PYTHON_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prototypes -Wno-unused-parameter -Wno-shadow $<
7e4b21b8 781
c29ede61
ACM
782$(OUTPUT)scripts/python/Perf-Trace-Util/Context.o: scripts/python/Perf-Trace-Util/Context.c $(OUTPUT)PERF-CFLAGS
783 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $(PYTHON_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prototypes -Wno-unused-parameter -Wno-nested-externs $<
7e4b21b8 784
8796cb9d 785$(OUTPUT)perf-%: %.o $(PERFLIBS)
d24e473e
IM
786 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
787
d24e473e 788$(LIB_OBJS) $(BUILTIN_OBJS): $(LIB_H)
8796cb9d 789$(patsubst perf-%,%.o,$(PROGRAMS)): $(LIB_H) $(wildcard */*.h)
d24e473e 790
033a273f
BP
791# we compile into subdirectories. if the target directory is not the source directory, they might not exists. So
792# we depend the various files onto their directories.
793DIRECTORY_DEPS = $(LIB_OBJS) $(BUILTIN_OBJS) $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)common-cmds.h
39cfae64 794$(DIRECTORY_DEPS): | $(sort $(dir $(DIRECTORY_DEPS)))
033a273f
BP
795# In the second step, we make a rule to actually create these directories
796$(sort $(dir $(DIRECTORY_DEPS))):
797 $(QUIET_MKDIR)$(MKDIR) -p $@ 2>/dev/null
798
d24e473e
IM
799$(LIB_FILE): $(LIB_OBJS)
800 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(LIB_OBJS)
801
4187e262
JB
802help:
803 @echo 'Perf make targets:'
804 @echo ' doc - make *all* documentation (see below)'
805 @echo ' man - make manpage documentation (access with man <foo>)'
806 @echo ' html - make html documentation'
807 @echo ' info - make GNU info documentation (access with info <foo>)'
808 @echo ' pdf - make pdf documentation'
809 @echo ' TAGS - use etags to make tag information for source browsing'
810 @echo ' tags - use ctags to make tag information for source browsing'
811 @echo ' cscope - use cscope to make interactive browsing database'
812 @echo ''
813 @echo 'Perf install targets:'
814 @echo ' NOTE: documentation build requires asciidoc, xmlto packages to be installed'
815 @echo ' HINT: use "make prefix=<path> <install target>" to install to a particular'
816 @echo ' path like make prefix=/usr/local install install-doc'
817 @echo ' install - install compiled binaries'
818 @echo ' install-doc - install *all* documentation'
819 @echo ' install-man - install manpage documentation'
820 @echo ' install-html - install html documentation'
821 @echo ' install-info - install GNU info documentation'
822 @echo ' install-pdf - install pdf documentation'
823 @echo ''
824 @echo ' quick-install-doc - alias for quick-install-man'
825 @echo ' quick-install-man - install the documentation quickly'
826 @echo ' quick-install-html - install the html documentation quickly'
827 @echo ''
828 @echo 'Perf maintainer targets:'
4187e262
JB
829 @echo ' clean - clean all binary objects and build output'
830
c1c2365a
IM
831doc:
832 $(MAKE) -C Documentation all
833
834man:
835 $(MAKE) -C Documentation man
836
837html:
838 $(MAKE) -C Documentation html
839
840info:
841 $(MAKE) -C Documentation info
842
843pdf:
844 $(MAKE) -C Documentation pdf
845
d24e473e
IM
846TAGS:
847 $(RM) TAGS
848 $(FIND) . -name '*.[hcS]' -print | xargs etags -a
849
850tags:
851 $(RM) tags
852 $(FIND) . -name '*.[hcS]' -print | xargs ctags -a
853
854cscope:
855 $(RM) cscope*
856 $(FIND) . -name '*.[hcS]' -print | xargs cscope -b
857
858### Detect prefix changes
859TRACK_CFLAGS = $(subst ','\'',$(ALL_CFLAGS)):\
07800601 860 $(bindir_SQ):$(perfexecdir_SQ):$(template_dir_SQ):$(prefix_SQ)
d24e473e 861
c29ede61 862$(OUTPUT)PERF-CFLAGS: .FORCE-PERF-CFLAGS
d24e473e 863 @FLAGS='$(TRACK_CFLAGS)'; \
c29ede61 864 if test x"$$FLAGS" != x"`cat $(OUTPUT)PERF-CFLAGS 2>/dev/null`" ; then \
d24e473e 865 echo 1>&2 " * new build flags or prefix"; \
c29ede61 866 echo "$$FLAGS" >$(OUTPUT)PERF-CFLAGS; \
d24e473e
IM
867 fi
868
d24e473e
IM
869### Testing rules
870
d24e473e
IM
871# GNU make supports exporting all variables by "export" without parameters.
872# However, the environment gets quite big, and some programs have problems
873# with that.
874
c29ede61 875check: $(OUTPUT)common-cmds.h
d24e473e
IM
876 if sparse; \
877 then \
148be2c1 878 for i in *.c */*.c; \
d24e473e
IM
879 do \
880 sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i || exit; \
881 done; \
882 else \
d24e473e
IM
883 exit 1; \
884 fi
885
d24e473e
IM
886### Installation rules
887
07800601
IM
888ifneq ($(filter /%,$(firstword $(perfexecdir))),)
889perfexec_instdir = $(perfexecdir)
d24e473e 890else
07800601 891perfexec_instdir = $(prefix)/$(perfexecdir)
d24e473e 892endif
07800601 893perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
d24e473e
IM
894
895install: all
896 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(bindir_SQ)'
8796cb9d 897 $(INSTALL) $(OUTPUT)perf '$(DESTDIR_SQ)$(bindir_SQ)'
bcefe12e
TZ
898 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/Perf-Trace-Util/lib/Perf/Trace'
899 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/bin'
c29ede61 900 $(INSTALL) $(OUTPUT)perf-archive -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)'
bcefe12e
TZ
901 $(INSTALL) scripts/perl/Perf-Trace-Util/lib/Perf/Trace/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/Perf-Trace-Util/lib/Perf/Trace'
902 $(INSTALL) scripts/perl/*.pl -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl'
903 $(INSTALL) scripts/perl/bin/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/bin'
7e4b21b8 904 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/Perf-Trace-Util/lib/Perf/Trace'
4d161f03 905 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/bin'
7e4b21b8 906 $(INSTALL) scripts/python/Perf-Trace-Util/lib/Perf/Trace/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/Perf-Trace-Util/lib/Perf/Trace'
4d161f03
TZ
907 $(INSTALL) scripts/python/*.py -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python'
908 $(INSTALL) scripts/python/bin/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/bin'
82d156cd 909
9941c96a
JO
910install-python_ext:
911 $(PYTHON_WORD) util/setup.py --quiet install --root='/$(DESTDIR_SQ)'
912
c1c2365a
IM
913install-doc:
914 $(MAKE) -C Documentation install
915
916install-man:
917 $(MAKE) -C Documentation install-man
918
919install-html:
920 $(MAKE) -C Documentation install-html
921
922install-info:
923 $(MAKE) -C Documentation install-info
924
925install-pdf:
926 $(MAKE) -C Documentation install-pdf
927
928quick-install-doc:
929 $(MAKE) -C Documentation quick-install
930
931quick-install-man:
932 $(MAKE) -C Documentation quick-install-man
933
934quick-install-html:
935 $(MAKE) -C Documentation quick-install-html
936
d24e473e
IM
937### Cleaning rules
938
e0143bad 939clean:
8b7e0b34 940 $(RM) $(LIB_OBJS) $(BUILTIN_OBJS) $(LIB_FILE) $(OUTPUT)perf-archive $(OUTPUT)perf.o $(LANG_BINDINGS)
a3d1ee10 941 $(RM) $(ALL_PROGRAMS) perf
c29ede61 942 $(RM) *.spec *.pyc *.pyo */*.pyc */*.pyo $(OUTPUT)common-cmds.h TAGS tags cscope*
c1c2365a 943 $(MAKE) -C Documentation/ clean
a3d1ee10 944 $(RM) $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)PERF-CFLAGS
65f3e56e 945 $(RM) $(OUTPUT)util/*-{bison,flex}*
ced465c4 946 $(python-clean)
d24e473e
IM
947
948.PHONY: all install clean strip
949.PHONY: shell_compatibility_test please_set_SHELL_PATH_to_a_more_modern_shell
07800601 950.PHONY: .FORCE-PERF-VERSION-FILE TAGS tags cscope .FORCE-PERF-CFLAGS