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