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