]> Pileus Git - ~andy/linux/blob - tools/perf/Makefile
perf tools: Makefile: Remove vestigial git-specific cruft
[~andy/linux] / tools / perf / Makefile
1 ifeq ("$(origin O)", "command line")
2         OUTPUT := $(O)/
3 endif
4
5 # The default target of this Makefile is...
6 all::
7
8 ifneq ($(OUTPUT),)
9 # check that the output directory actually exists
10 OUTDIR := $(shell cd $(OUTPUT) && /bin/pwd)
11 $(if $(OUTDIR),, $(error output directory "$(OUTPUT)" does not exist))
12 endif
13
14 # Define V=1 to have a more verbose compile.
15 # Define V=2 to have an even more verbose compile.
16 #
17 # Define SNPRINTF_RETURNS_BOGUS if your are on a system which snprintf()
18 # or vsnprintf() return -1 instead of number of characters which would
19 # have been written to the final string if enough space had been available.
20 #
21 # Define FREAD_READS_DIRECTORIES if your are on a system which succeeds
22 # when attempting to read from an fopen'ed directory.
23 #
24 # Define CURLDIR=/foo/bar if your curl header and library files are in
25 # /foo/bar/include and /foo/bar/lib directories.
26 #
27 # Define EXPATDIR=/foo/bar if your expat header and library files are in
28 # /foo/bar/include and /foo/bar/lib directories.
29 #
30 # Define NO_D_INO_IN_DIRENT if you don't have d_ino in your struct dirent.
31 #
32 # Define NO_D_TYPE_IN_DIRENT if your platform defines DT_UNKNOWN but lacks
33 # d_type in struct dirent (latest Cygwin -- will be fixed soonish).
34 #
35 # Define NO_C99_FORMAT if your formatted IO functions (printf/scanf et.al.)
36 # do not support the 'size specifiers' introduced by C99, namely ll, hh,
37 # j, z, t. (representing long long int, char, intmax_t, size_t, ptrdiff_t).
38 # some C compilers supported these specifiers prior to C99 as an extension.
39 #
40 # Define NO_STRCASESTR if you don't have strcasestr.
41 #
42 # Define NO_MEMMEM if you don't have memmem.
43 #
44 # Define NO_STRTOUMAX if you don't have strtoumax in the C library.
45 # If your compiler also does not support long long or does not have
46 # strtoull, define NO_STRTOULL.
47 #
48 # Define NO_SETENV if you don't have setenv in the C library.
49 #
50 # Define NO_UNSETENV if you don't have unsetenv in the C library.
51 #
52 # Define NO_MKDTEMP if you don't have mkdtemp in the C library.
53 #
54 # Define NO_SYS_SELECT_H if you don't have sys/select.h.
55 #
56 # Define NO_FINK if you are building on Darwin/Mac OS X, have Fink
57 # installed in /sw, but don't want PERF to link against any libraries
58 # installed there.  If defined you may specify your own (or Fink's)
59 # include directories and library directories by defining CFLAGS
60 # and LDFLAGS appropriately.
61 #
62 # Define NO_DARWIN_PORTS if you are building on Darwin/Mac OS X,
63 # have DarwinPorts installed in /opt/local, but don't want PERF to
64 # link against any libraries installed there.  If defined you may
65 # specify your own (or DarwinPort's) include directories and
66 # library directories by defining CFLAGS and LDFLAGS appropriately.
67 #
68 # Define NEEDS_LIBICONV if linking with libc is not enough (Darwin).
69 #
70 # Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
71 # Patrick Mauritz).
72 #
73 # Define NO_MMAP if you want to avoid mmap.
74 #
75 # Define NO_PTHREADS if you do not have or do not want to use Pthreads.
76 #
77 # Define NO_PREAD if you have a problem with pread() system call (e.g.
78 # cygwin.dll before v1.5.22).
79 #
80 # Define NO_TRUSTABLE_FILEMODE if your filesystem may claim to support
81 # the executable mode bit, but doesn't really do so.
82 #
83 # Define NO_IPV6 if you lack IPv6 support and getaddrinfo().
84 #
85 # Define NO_SOCKADDR_STORAGE if your platform does not have struct
86 # sockaddr_storage.
87 #
88 # Define NO_ICONV if your libc does not properly support iconv.
89 #
90 # Define OLD_ICONV if your library has an old iconv(), where the second
91 # (input buffer pointer) parameter is declared with type (const char **).
92 #
93 # Define NO_DEFLATE_BOUND if your zlib does not have deflateBound.
94 #
95 # Define NO_R_TO_GCC_LINKER if your gcc does not like "-R/path/lib"
96 # that tells runtime paths to dynamic libraries;
97 # "-Wl,-rpath=/path/lib" is used instead.
98 #
99 # Define USE_NSEC below if you want perf to care about sub-second file mtimes
100 # and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
101 # it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
102 # randomly break unless your underlying filesystem supports those sub-second
103 # times (my ext3 doesn't).
104 #
105 # Define USE_ST_TIMESPEC if your "struct stat" uses "st_ctimespec" instead of
106 # "st_ctim"
107 #
108 # Define NO_NSEC if your "struct stat" does not have "st_ctim.tv_nsec"
109 # available.  This automatically turns USE_NSEC off.
110 #
111 # Define NO_ST_BLOCKS_IN_STRUCT_STAT if your platform does not have st_blocks
112 # field that counts the on-disk footprint in 512-byte blocks.
113 #
114 # Define ASCIIDOC8 if you want to format documentation with AsciiDoc 8
115 #
116 # Define DOCBOOK_XSL_172 if you want to format man pages with DocBook XSL v1.72.
117 #
118 # Define NO_PERL_MAKEMAKER if you cannot use Makefiles generated by perl's
119 # MakeMaker (e.g. using ActiveState under Cygwin).
120 #
121 # Define NO_PERL if you do not want Perl scripts or libraries at all.
122 #
123 # Define INTERNAL_QSORT to use Git's implementation of qsort(), which
124 # is a simplified version of the merge sort used in glibc. This is
125 # recommended if Git triggers O(n^2) behavior in your platform's qsort().
126 #
127 # Define NO_EXTERNAL_GREP if you don't want "perf grep" to ever call
128 # your external grep (e.g., if your system lacks grep, if its grep is
129 # broken, or spawning external process is slower than built-in grep perf has).
130 #
131 # Define LDFLAGS=-static to build a static binary.
132 #
133 # Define EXTRA_CFLAGS=-m64 or EXTRA_CFLAGS=-m32 as appropriate for cross-builds.
134 #
135 # Define NO_DWARF if you do not want debug-info analysis feature at all.
136
137 $(OUTPUT)PERF-VERSION-FILE: .FORCE-PERF-VERSION-FILE
138         @$(SHELL_PATH) util/PERF-VERSION-GEN $(OUTPUT)
139 -include $(OUTPUT)PERF-VERSION-FILE
140
141 uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
142 uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
143 uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
144 uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
145 uname_P := $(shell sh -c 'uname -p 2>/dev/null || echo not')
146 uname_V := $(shell sh -c 'uname -v 2>/dev/null || echo not')
147
148 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \
149                                   -e s/arm.*/arm/ -e s/sa110/arm/ \
150                                   -e s/s390x/s390/ -e s/parisc64/parisc/ \
151                                   -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
152                                   -e s/sh[234].*/sh/ )
153
154 # Additional ARCH settings for x86
155 ifeq ($(ARCH),i386)
156         ARCH := x86
157 endif
158 ifeq ($(ARCH),x86_64)
159         RAW_ARCH := x86_64
160         ARCH := x86
161         ARCH_CFLAGS := -DARCH_X86_64
162         ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S
163 endif
164
165 # CFLAGS and LDFLAGS are for the users to override from the command line.
166
167 #
168 # Include saner warnings here, which can catch bugs:
169 #
170
171 EXTRA_WARNINGS := -Wformat
172 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wformat-security
173 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wformat-y2k
174 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wshadow
175 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Winit-self
176 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wpacked
177 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wredundant-decls
178 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wstrict-aliasing=3
179 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wswitch-default
180 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wswitch-enum
181 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wno-system-headers
182 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wundef
183 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wwrite-strings
184 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wbad-function-cast
185 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wmissing-declarations
186 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wmissing-prototypes
187 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wnested-externs
188 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wold-style-definition
189 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wstrict-prototypes
190 EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wdeclaration-after-statement
191
192 ifeq ("$(origin DEBUG)", "command line")
193   PERF_DEBUG = $(DEBUG)
194 endif
195 ifndef PERF_DEBUG
196   CFLAGS_OPTIMIZE = -O6
197 endif
198
199 CFLAGS = -fno-omit-frame-pointer -ggdb3 -Wall -Wextra -std=gnu99 -Werror $(CFLAGS_OPTIMIZE) -D_FORTIFY_SOURCE=2 $(EXTRA_WARNINGS) $(EXTRA_CFLAGS)
200 EXTLIBS = -lpthread -lrt -lelf -lm
201 ALL_CFLAGS = $(CFLAGS) -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
202 ALL_LDFLAGS = $(LDFLAGS)
203 STRIP ?= strip
204
205 # Among the variables below, these:
206 #   perfexecdir
207 #   template_dir
208 #   mandir
209 #   infodir
210 #   htmldir
211 #   ETC_PERFCONFIG (but not sysconfdir)
212 # can be specified as a relative path some/where/else;
213 # this is interpreted as relative to $(prefix) and "perf" at
214 # runtime figures out where they are based on the path to the executable.
215 # This can help installing the suite in a relocatable way.
216
217 # Make the path relative to DESTDIR, not to prefix
218 ifndef DESTDIR
219 prefix = $(HOME)
220 endif
221 bindir_relative = bin
222 bindir = $(prefix)/$(bindir_relative)
223 mandir = share/man
224 infodir = share/info
225 perfexecdir = libexec/perf-core
226 sharedir = $(prefix)/share
227 template_dir = share/perf-core/templates
228 htmldir = share/doc/perf-doc
229 ifeq ($(prefix),/usr)
230 sysconfdir = /etc
231 ETC_PERFCONFIG = $(sysconfdir)/perfconfig
232 else
233 sysconfdir = $(prefix)/etc
234 ETC_PERFCONFIG = etc/perfconfig
235 endif
236 lib = lib
237
238 export prefix bindir sharedir sysconfdir
239
240 CC = $(CROSS_COMPILE)gcc
241 AR = $(CROSS_COMPILE)ar
242 RM = rm -f
243 MKDIR = mkdir
244 TAR = tar
245 FIND = find
246 INSTALL = install
247 RPMBUILD = rpmbuild
248 PTHREAD_LIBS = -lpthread
249
250 # sparse is architecture-neutral, which means that we need to tell it
251 # explicitly what architecture to check for. Fix this up for yours..
252 SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
253
254 ifeq ($(V), 2)
255         QUIET_STDERR = ">/dev/null"
256 else
257         QUIET_STDERR = ">/dev/null 2>&1"
258 endif
259
260 -include feature-tests.mak
261
262 ifeq ($(call try-cc,$(SOURCE_HELLO),-Werror -fstack-protector-all),y)
263         CFLAGS := $(CFLAGS) -fstack-protector-all
264 endif
265
266 ifeq ($(call try-cc,$(SOURCE_HELLO),-Werror -Wstack-protector),y)
267        CFLAGS := $(CFLAGS) -Wstack-protector
268 endif
269
270 ifeq ($(call try-cc,$(SOURCE_HELLO),-Werror -Wvolatile-register-var),y)
271        CFLAGS := $(CFLAGS) -Wvolatile-register-var
272 endif
273
274 ### --- END CONFIGURATION SECTION ---
275
276 # Those must not be GNU-specific; they are shared with perl/ which may
277 # be built by a different compiler. (Note that this is an artifact now
278 # but it still might be nice to keep that distinction.)
279 BASIC_CFLAGS = -Iutil/include -Iarch/$(ARCH)/include
280 BASIC_LDFLAGS =
281
282 # Guard against environment variables
283 BUILTIN_OBJS =
284 BUILT_INS =
285 COMPAT_CFLAGS =
286 COMPAT_OBJS =
287 LIB_H =
288 LIB_OBJS =
289 PYRF_OBJS =
290 SCRIPT_PERL =
291 SCRIPT_SH =
292 TEST_PROGRAMS =
293
294 SCRIPT_SH += perf-archive.sh
295
296 grep-libs = $(filter -l%,$(1))
297 strip-libs = $(filter-out -l%,$(1))
298
299 $(OUTPUT)python/perf.so: $(PYRF_OBJS)
300         $(QUIET_GEN)python util/setup.py --quiet  build_ext --build-lib='$(OUTPUT)python' \
301                                                 --build-temp='$(OUTPUT)python/temp'
302 #
303 # No Perl scripts right now:
304 #
305
306 # SCRIPT_PERL += perf-add--interactive.perl
307
308 SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
309           $(patsubst %.perl,%,$(SCRIPT_PERL))
310
311 # Empty...
312 EXTRA_PROGRAMS =
313
314 # ... and all the rest that could be moved out of bindir to perfexecdir
315 PROGRAMS += $(EXTRA_PROGRAMS)
316
317 #
318 # Single 'perf' binary right now:
319 #
320 PROGRAMS += $(OUTPUT)perf
321
322 LANG_BINDINGS =
323
324 # List built-in command $C whose implementation cmd_$C() is not in
325 # builtin-$C.o but is linked in as part of some other command.
326 #
327
328 # what 'all' will build and 'install' will install, in perfexecdir
329 ALL_PROGRAMS = $(PROGRAMS) $(SCRIPTS)
330
331 # what 'all' will build but not install in perfexecdir
332 OTHER_PROGRAMS = $(OUTPUT)perf$X
333
334 # Set paths to tools early so that they can be used for version tests.
335 ifndef SHELL_PATH
336         SHELL_PATH = /bin/sh
337 endif
338 ifndef PERL_PATH
339         PERL_PATH = /usr/bin/perl
340 endif
341
342 export PERL_PATH
343
344 LIB_FILE=$(OUTPUT)libperf.a
345
346 LIB_H += ../../include/linux/perf_event.h
347 LIB_H += ../../include/linux/rbtree.h
348 LIB_H += ../../include/linux/list.h
349 LIB_H += ../../include/linux/hash.h
350 LIB_H += ../../include/linux/stringify.h
351 LIB_H += util/include/linux/bitmap.h
352 LIB_H += util/include/linux/bitops.h
353 LIB_H += util/include/linux/compiler.h
354 LIB_H += util/include/linux/ctype.h
355 LIB_H += util/include/linux/kernel.h
356 LIB_H += util/include/linux/list.h
357 LIB_H += util/include/linux/module.h
358 LIB_H += util/include/linux/poison.h
359 LIB_H += util/include/linux/prefetch.h
360 LIB_H += util/include/linux/rbtree.h
361 LIB_H += util/include/linux/string.h
362 LIB_H += util/include/linux/types.h
363 LIB_H += util/include/linux/linkage.h
364 LIB_H += util/include/asm/asm-offsets.h
365 LIB_H += util/include/asm/bug.h
366 LIB_H += util/include/asm/byteorder.h
367 LIB_H += util/include/asm/hweight.h
368 LIB_H += util/include/asm/swab.h
369 LIB_H += util/include/asm/system.h
370 LIB_H += util/include/asm/uaccess.h
371 LIB_H += util/include/dwarf-regs.h
372 LIB_H += util/include/asm/dwarf2.h
373 LIB_H += util/include/asm/cpufeature.h
374 LIB_H += perf.h
375 LIB_H += util/annotate.h
376 LIB_H += util/cache.h
377 LIB_H += util/callchain.h
378 LIB_H += util/build-id.h
379 LIB_H += util/debug.h
380 LIB_H += util/debugfs.h
381 LIB_H += util/event.h
382 LIB_H += util/evsel.h
383 LIB_H += util/evlist.h
384 LIB_H += util/exec_cmd.h
385 LIB_H += util/types.h
386 LIB_H += util/levenshtein.h
387 LIB_H += util/map.h
388 LIB_H += util/parse-options.h
389 LIB_H += util/parse-events.h
390 LIB_H += util/quote.h
391 LIB_H += util/util.h
392 LIB_H += util/xyarray.h
393 LIB_H += util/header.h
394 LIB_H += util/help.h
395 LIB_H += util/session.h
396 LIB_H += util/strbuf.h
397 LIB_H += util/strlist.h
398 LIB_H += util/strfilter.h
399 LIB_H += util/svghelper.h
400 LIB_H += util/run-command.h
401 LIB_H += util/sigchain.h
402 LIB_H += util/symbol.h
403 LIB_H += util/color.h
404 LIB_H += util/values.h
405 LIB_H += util/sort.h
406 LIB_H += util/hist.h
407 LIB_H += util/thread.h
408 LIB_H += util/thread_map.h
409 LIB_H += util/trace-event.h
410 LIB_H += util/probe-finder.h
411 LIB_H += util/probe-event.h
412 LIB_H += util/pstack.h
413 LIB_H += util/cpumap.h
414 LIB_H += util/top.h
415 LIB_H += $(ARCH_INCLUDE)
416 LIB_H += util/cgroup.h
417
418 LIB_OBJS += $(OUTPUT)util/abspath.o
419 LIB_OBJS += $(OUTPUT)util/alias.o
420 LIB_OBJS += $(OUTPUT)util/annotate.o
421 LIB_OBJS += $(OUTPUT)util/build-id.o
422 LIB_OBJS += $(OUTPUT)util/config.o
423 LIB_OBJS += $(OUTPUT)util/ctype.o
424 LIB_OBJS += $(OUTPUT)util/debugfs.o
425 LIB_OBJS += $(OUTPUT)util/environment.o
426 LIB_OBJS += $(OUTPUT)util/event.o
427 LIB_OBJS += $(OUTPUT)util/evlist.o
428 LIB_OBJS += $(OUTPUT)util/evsel.o
429 LIB_OBJS += $(OUTPUT)util/exec_cmd.o
430 LIB_OBJS += $(OUTPUT)util/help.o
431 LIB_OBJS += $(OUTPUT)util/levenshtein.o
432 LIB_OBJS += $(OUTPUT)util/parse-options.o
433 LIB_OBJS += $(OUTPUT)util/parse-events.o
434 LIB_OBJS += $(OUTPUT)util/path.o
435 LIB_OBJS += $(OUTPUT)util/rbtree.o
436 LIB_OBJS += $(OUTPUT)util/bitmap.o
437 LIB_OBJS += $(OUTPUT)util/hweight.o
438 LIB_OBJS += $(OUTPUT)util/run-command.o
439 LIB_OBJS += $(OUTPUT)util/quote.o
440 LIB_OBJS += $(OUTPUT)util/strbuf.o
441 LIB_OBJS += $(OUTPUT)util/string.o
442 LIB_OBJS += $(OUTPUT)util/strlist.o
443 LIB_OBJS += $(OUTPUT)util/strfilter.o
444 LIB_OBJS += $(OUTPUT)util/top.o
445 LIB_OBJS += $(OUTPUT)util/usage.o
446 LIB_OBJS += $(OUTPUT)util/wrapper.o
447 LIB_OBJS += $(OUTPUT)util/sigchain.o
448 LIB_OBJS += $(OUTPUT)util/symbol.o
449 LIB_OBJS += $(OUTPUT)util/color.o
450 LIB_OBJS += $(OUTPUT)util/pager.o
451 LIB_OBJS += $(OUTPUT)util/header.o
452 LIB_OBJS += $(OUTPUT)util/callchain.o
453 LIB_OBJS += $(OUTPUT)util/values.o
454 LIB_OBJS += $(OUTPUT)util/debug.o
455 LIB_OBJS += $(OUTPUT)util/map.o
456 LIB_OBJS += $(OUTPUT)util/pstack.o
457 LIB_OBJS += $(OUTPUT)util/session.o
458 LIB_OBJS += $(OUTPUT)util/thread.o
459 LIB_OBJS += $(OUTPUT)util/thread_map.o
460 LIB_OBJS += $(OUTPUT)util/trace-event-parse.o
461 LIB_OBJS += $(OUTPUT)util/trace-event-read.o
462 LIB_OBJS += $(OUTPUT)util/trace-event-info.o
463 LIB_OBJS += $(OUTPUT)util/trace-event-scripting.o
464 LIB_OBJS += $(OUTPUT)util/svghelper.o
465 LIB_OBJS += $(OUTPUT)util/sort.o
466 LIB_OBJS += $(OUTPUT)util/hist.o
467 LIB_OBJS += $(OUTPUT)util/probe-event.o
468 LIB_OBJS += $(OUTPUT)util/util.o
469 LIB_OBJS += $(OUTPUT)util/xyarray.o
470 LIB_OBJS += $(OUTPUT)util/cpumap.o
471 LIB_OBJS += $(OUTPUT)util/cgroup.o
472
473 BUILTIN_OBJS += $(OUTPUT)builtin-annotate.o
474
475 BUILTIN_OBJS += $(OUTPUT)builtin-bench.o
476
477 # Benchmark modules
478 BUILTIN_OBJS += $(OUTPUT)bench/sched-messaging.o
479 BUILTIN_OBJS += $(OUTPUT)bench/sched-pipe.o
480 ifeq ($(RAW_ARCH),x86_64)
481 BUILTIN_OBJS += $(OUTPUT)bench/mem-memcpy-x86-64-asm.o
482 endif
483 BUILTIN_OBJS += $(OUTPUT)bench/mem-memcpy.o
484
485 BUILTIN_OBJS += $(OUTPUT)builtin-diff.o
486 BUILTIN_OBJS += $(OUTPUT)builtin-help.o
487 BUILTIN_OBJS += $(OUTPUT)builtin-sched.o
488 BUILTIN_OBJS += $(OUTPUT)builtin-buildid-list.o
489 BUILTIN_OBJS += $(OUTPUT)builtin-buildid-cache.o
490 BUILTIN_OBJS += $(OUTPUT)builtin-list.o
491 BUILTIN_OBJS += $(OUTPUT)builtin-record.o
492 BUILTIN_OBJS += $(OUTPUT)builtin-report.o
493 BUILTIN_OBJS += $(OUTPUT)builtin-stat.o
494 BUILTIN_OBJS += $(OUTPUT)builtin-timechart.o
495 BUILTIN_OBJS += $(OUTPUT)builtin-top.o
496 BUILTIN_OBJS += $(OUTPUT)builtin-script.o
497 BUILTIN_OBJS += $(OUTPUT)builtin-probe.o
498 BUILTIN_OBJS += $(OUTPUT)builtin-kmem.o
499 BUILTIN_OBJS += $(OUTPUT)builtin-lock.o
500 BUILTIN_OBJS += $(OUTPUT)builtin-kvm.o
501 BUILTIN_OBJS += $(OUTPUT)builtin-test.o
502 BUILTIN_OBJS += $(OUTPUT)builtin-inject.o
503
504 PERFLIBS = $(LIB_FILE)
505
506 # Files needed for the python binding, perf.so
507 # pyrf is just an internal name needed for all those wrappers.
508 # This has to be in sync with what is in the 'sources' variable in
509 # tools/perf/util/setup.py
510
511 PYRF_OBJS += $(OUTPUT)util/cpumap.o
512 PYRF_OBJS += $(OUTPUT)util/ctype.o
513 PYRF_OBJS += $(OUTPUT)util/evlist.o
514 PYRF_OBJS += $(OUTPUT)util/evsel.o
515 PYRF_OBJS += $(OUTPUT)util/python.o
516 PYRF_OBJS += $(OUTPUT)util/thread_map.o
517 PYRF_OBJS += $(OUTPUT)util/util.o
518 PYRF_OBJS += $(OUTPUT)util/xyarray.o
519
520 #
521 # Platform specific tweaks
522 #
523
524 # We choose to avoid "if .. else if .. else .. endif endif"
525 # because maintaining the nesting to match is a pain.  If
526 # we had "elif" things would have been much nicer...
527
528 -include config.mak.autogen
529 -include config.mak
530
531 ifndef NO_DWARF
532 FLAGS_DWARF=$(ALL_CFLAGS) -ldw -lelf $(ALL_LDFLAGS) $(EXTLIBS)
533 ifneq ($(call try-cc,$(SOURCE_DWARF),$(FLAGS_DWARF)),y)
534         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);
535         NO_DWARF := 1
536 endif # Dwarf support
537 endif # NO_DWARF
538
539 -include arch/$(ARCH)/Makefile
540
541 ifeq ($(uname_S),Darwin)
542         ifndef NO_FINK
543                 ifeq ($(shell test -d /sw/lib && echo y),y)
544                         BASIC_CFLAGS += -I/sw/include
545                         BASIC_LDFLAGS += -L/sw/lib
546                 endif
547         endif
548         ifndef NO_DARWIN_PORTS
549                 ifeq ($(shell test -d /opt/local/lib && echo y),y)
550                         BASIC_CFLAGS += -I/opt/local/include
551                         BASIC_LDFLAGS += -L/opt/local/lib
552                 endif
553         endif
554         PTHREAD_LIBS =
555 endif
556
557 ifneq ($(OUTPUT),)
558         BASIC_CFLAGS += -I$(OUTPUT)
559 endif
560
561 FLAGS_LIBELF=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS)
562 ifneq ($(call try-cc,$(SOURCE_LIBELF),$(FLAGS_LIBELF)),y)
563         FLAGS_GLIBC=$(ALL_CFLAGS) $(ALL_LDFLAGS)
564         ifneq ($(call try-cc,$(SOURCE_GLIBC),$(FLAGS_GLIBC)),y)
565                 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
566         else
567                 msg := $(error No libelf.h/libelf found, please install libelf-dev/elfutils-libelf-devel);
568         endif
569 endif
570
571 ifneq ($(call try-cc,$(SOURCE_ELF_MMAP),$(FLAGS_COMMON)),y)
572         BASIC_CFLAGS += -DLIBELF_NO_MMAP
573 endif
574
575 ifndef NO_DWARF
576 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
577         msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
578 else
579         BASIC_CFLAGS += -DDWARF_SUPPORT
580         EXTLIBS += -lelf -ldw
581         LIB_OBJS += $(OUTPUT)util/probe-finder.o
582 endif # PERF_HAVE_DWARF_REGS
583 endif # NO_DWARF
584
585 ifdef NO_NEWT
586         BASIC_CFLAGS += -DNO_NEWT_SUPPORT
587 else
588         FLAGS_NEWT=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS) -lnewt
589         ifneq ($(call try-cc,$(SOURCE_NEWT),$(FLAGS_NEWT)),y)
590                 msg := $(warning newt not found, disables TUI support. Please install newt-devel or libnewt-dev);
591                 BASIC_CFLAGS += -DNO_NEWT_SUPPORT
592         else
593                 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
594                 BASIC_CFLAGS += -I/usr/include/slang
595                 EXTLIBS += -lnewt -lslang
596                 LIB_OBJS += $(OUTPUT)util/ui/setup.o
597                 LIB_OBJS += $(OUTPUT)util/ui/browser.o
598                 LIB_OBJS += $(OUTPUT)util/ui/browsers/annotate.o
599                 LIB_OBJS += $(OUTPUT)util/ui/browsers/hists.o
600                 LIB_OBJS += $(OUTPUT)util/ui/browsers/map.o
601                 LIB_OBJS += $(OUTPUT)util/ui/browsers/top.o
602                 LIB_OBJS += $(OUTPUT)util/ui/helpline.o
603                 LIB_OBJS += $(OUTPUT)util/ui/progress.o
604                 LIB_OBJS += $(OUTPUT)util/ui/util.o
605                 LIB_H += util/ui/browser.h
606                 LIB_H += util/ui/browsers/map.h
607                 LIB_H += util/ui/helpline.h
608                 LIB_H += util/ui/libslang.h
609                 LIB_H += util/ui/progress.h
610                 LIB_H += util/ui/util.h
611                 LIB_H += util/ui/ui.h
612         endif
613 endif
614
615 ifdef NO_LIBPERL
616         BASIC_CFLAGS += -DNO_LIBPERL
617 else
618        PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
619        PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
620        PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
621         PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
622         FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
623
624         ifneq ($(call try-cc,$(SOURCE_PERL_EMBED),$(FLAGS_PERL_EMBED)),y)
625                 BASIC_CFLAGS += -DNO_LIBPERL
626         else
627                ALL_LDFLAGS += $(PERL_EMBED_LDFLAGS)
628                EXTLIBS += $(PERL_EMBED_LIBADD)
629                 LIB_OBJS += $(OUTPUT)util/scripting-engines/trace-event-perl.o
630                 LIB_OBJS += $(OUTPUT)scripts/perl/Perf-Trace-Util/Context.o
631         endif
632 endif
633
634 ifdef NO_LIBPYTHON
635         BASIC_CFLAGS += -DNO_LIBPYTHON
636 else
637        PYTHON_EMBED_LDOPTS = $(shell python-config --ldflags 2>/dev/null)
638        PYTHON_EMBED_LDFLAGS = $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
639        PYTHON_EMBED_LIBADD = $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
640         PYTHON_EMBED_CCOPTS = `python-config --cflags 2>/dev/null`
641         FLAGS_PYTHON_EMBED=$(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
642         ifneq ($(call try-cc,$(SOURCE_PYTHON_EMBED),$(FLAGS_PYTHON_EMBED)),y)
643                 msg := $(warning No Python.h found, install python-dev[el] to have python support in 'perf script' and to build the python bindings)
644                 BASIC_CFLAGS += -DNO_LIBPYTHON
645         else
646                ALL_LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
647                EXTLIBS += $(PYTHON_EMBED_LIBADD)
648                 LIB_OBJS += $(OUTPUT)util/scripting-engines/trace-event-python.o
649                 LIB_OBJS += $(OUTPUT)scripts/python/Perf-Trace-Util/Context.o
650                 LANG_BINDINGS += $(OUTPUT)python/perf.so
651         endif
652 endif
653
654 ifdef NO_DEMANGLE
655         BASIC_CFLAGS += -DNO_DEMANGLE
656 else
657         ifdef HAVE_CPLUS_DEMANGLE
658                 EXTLIBS += -liberty
659                 BASIC_CFLAGS += -DHAVE_CPLUS_DEMANGLE
660         else
661                 FLAGS_BFD=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS) -lbfd
662                 has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD))
663                 ifeq ($(has_bfd),y)
664                         EXTLIBS += -lbfd
665                 else
666                         FLAGS_BFD_IBERTY=$(FLAGS_BFD) -liberty
667                         has_bfd_iberty := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY))
668                         ifeq ($(has_bfd_iberty),y)
669                                 EXTLIBS += -lbfd -liberty
670                         else
671                                 FLAGS_BFD_IBERTY_Z=$(FLAGS_BFD_IBERTY) -lz
672                                 has_bfd_iberty_z := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY_Z))
673                                 ifeq ($(has_bfd_iberty_z),y)
674                                         EXTLIBS += -lbfd -liberty -lz
675                                 else
676                                         FLAGS_CPLUS_DEMANGLE=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS) -liberty
677                                         has_cplus_demangle := $(call try-cc,$(SOURCE_CPLUS_DEMANGLE),$(FLAGS_CPLUS_DEMANGLE))
678                                         ifeq ($(has_cplus_demangle),y)
679                                                 EXTLIBS += -liberty
680                                                 BASIC_CFLAGS += -DHAVE_CPLUS_DEMANGLE
681                                         else
682                                                 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
683                                                 BASIC_CFLAGS += -DNO_DEMANGLE
684                                         endif
685                                 endif
686                         endif
687                 endif
688         endif
689 endif
690
691
692 ifdef NO_STRLCPY
693         BASIC_CFLAGS += -DNO_STRLCPY
694 else
695         ifneq ($(call try-cc,$(SOURCE_STRLCPY),),y)
696                 BASIC_CFLAGS += -DNO_STRLCPY
697         endif
698 endif
699
700 ifndef CC_LD_DYNPATH
701         ifdef NO_R_TO_GCC_LINKER
702                 # Some gcc does not accept and pass -R to the linker to specify
703                 # the runtime dynamic library path.
704                 CC_LD_DYNPATH = -Wl,-rpath,
705         else
706                 CC_LD_DYNPATH = -R
707         endif
708 endif
709
710 ifdef NEEDS_SOCKET
711         EXTLIBS += -lsocket
712 endif
713 ifdef NEEDS_NSL
714         EXTLIBS += -lnsl
715 endif
716 ifdef NO_D_TYPE_IN_DIRENT
717         BASIC_CFLAGS += -DNO_D_TYPE_IN_DIRENT
718 endif
719 ifdef NO_D_INO_IN_DIRENT
720         BASIC_CFLAGS += -DNO_D_INO_IN_DIRENT
721 endif
722 ifdef NO_ST_BLOCKS_IN_STRUCT_STAT
723         BASIC_CFLAGS += -DNO_ST_BLOCKS_IN_STRUCT_STAT
724 endif
725 ifdef USE_NSEC
726         BASIC_CFLAGS += -DUSE_NSEC
727 endif
728 ifdef USE_ST_TIMESPEC
729         BASIC_CFLAGS += -DUSE_ST_TIMESPEC
730 endif
731 ifdef NO_NSEC
732         BASIC_CFLAGS += -DNO_NSEC
733 endif
734 ifdef NO_C99_FORMAT
735         BASIC_CFLAGS += -DNO_C99_FORMAT
736 endif
737 ifdef SNPRINTF_RETURNS_BOGUS
738         COMPAT_CFLAGS += -DSNPRINTF_RETURNS_BOGUS
739         COMPAT_OBJS += $(OUTPUT)compat/snprintf.o
740 endif
741 ifdef FREAD_READS_DIRECTORIES
742         COMPAT_CFLAGS += -DFREAD_READS_DIRECTORIES
743         COMPAT_OBJS += $(OUTPUT)compat/fopen.o
744 endif
745 ifdef NO_STRCASESTR
746         COMPAT_CFLAGS += -DNO_STRCASESTR
747         COMPAT_OBJS += $(OUTPUT)compat/strcasestr.o
748 endif
749 ifdef NO_STRTOUMAX
750         COMPAT_CFLAGS += -DNO_STRTOUMAX
751         COMPAT_OBJS += $(OUTPUT)compat/strtoumax.o
752 endif
753 ifdef NO_STRTOULL
754         COMPAT_CFLAGS += -DNO_STRTOULL
755 endif
756 ifdef NO_SETENV
757         COMPAT_CFLAGS += -DNO_SETENV
758         COMPAT_OBJS += $(OUTPUT)compat/setenv.o
759 endif
760 ifdef NO_MKDTEMP
761         COMPAT_CFLAGS += -DNO_MKDTEMP
762         COMPAT_OBJS += $(OUTPUT)compat/mkdtemp.o
763 endif
764 ifdef NO_UNSETENV
765         COMPAT_CFLAGS += -DNO_UNSETENV
766         COMPAT_OBJS += $(OUTPUT)compat/unsetenv.o
767 endif
768 ifdef NO_SYS_SELECT_H
769         BASIC_CFLAGS += -DNO_SYS_SELECT_H
770 endif
771 ifdef NO_MMAP
772         COMPAT_CFLAGS += -DNO_MMAP
773         COMPAT_OBJS += $(OUTPUT)compat/mmap.o
774 else
775         ifdef USE_WIN32_MMAP
776                 COMPAT_CFLAGS += -DUSE_WIN32_MMAP
777                 COMPAT_OBJS += $(OUTPUT)compat/win32mmap.o
778         endif
779 endif
780 ifdef NO_PREAD
781         COMPAT_CFLAGS += -DNO_PREAD
782         COMPAT_OBJS += $(OUTPUT)compat/pread.o
783 endif
784 ifdef NO_TRUSTABLE_FILEMODE
785         BASIC_CFLAGS += -DNO_TRUSTABLE_FILEMODE
786 endif
787 ifdef NO_IPV6
788         BASIC_CFLAGS += -DNO_IPV6
789 endif
790 ifdef NO_UINTMAX_T
791         BASIC_CFLAGS += -Duintmax_t=uint32_t
792 endif
793 ifdef NO_SOCKADDR_STORAGE
794 ifdef NO_IPV6
795         BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in
796 else
797         BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in6
798 endif
799 endif
800 ifdef NO_INET_NTOP
801         LIB_OBJS += $(OUTPUT)compat/inet_ntop.o
802 endif
803 ifdef NO_INET_PTON
804         LIB_OBJS += $(OUTPUT)compat/inet_pton.o
805 endif
806
807 ifdef NO_ICONV
808         BASIC_CFLAGS += -DNO_ICONV
809 endif
810
811 ifdef OLD_ICONV
812         BASIC_CFLAGS += -DOLD_ICONV
813 endif
814
815 ifdef NO_DEFLATE_BOUND
816         BASIC_CFLAGS += -DNO_DEFLATE_BOUND
817 endif
818
819 ifdef NO_PERL_MAKEMAKER
820         export NO_PERL_MAKEMAKER
821 endif
822 ifdef NO_HSTRERROR
823         COMPAT_CFLAGS += -DNO_HSTRERROR
824         COMPAT_OBJS += $(OUTPUT)compat/hstrerror.o
825 endif
826 ifdef NO_MEMMEM
827         COMPAT_CFLAGS += -DNO_MEMMEM
828         COMPAT_OBJS += $(OUTPUT)compat/memmem.o
829 endif
830 ifdef INTERNAL_QSORT
831         COMPAT_CFLAGS += -DINTERNAL_QSORT
832         COMPAT_OBJS += $(OUTPUT)compat/qsort.o
833 endif
834 ifdef RUNTIME_PREFIX
835         COMPAT_CFLAGS += -DRUNTIME_PREFIX
836 endif
837
838 ifdef DIR_HAS_BSD_GROUP_SEMANTICS
839         COMPAT_CFLAGS += -DDIR_HAS_BSD_GROUP_SEMANTICS
840 endif
841 ifdef NO_EXTERNAL_GREP
842         BASIC_CFLAGS += -DNO_EXTERNAL_GREP
843 endif
844
845 ifeq ($(PERL_PATH),)
846 NO_PERL=NoThanks
847 endif
848
849 QUIET_SUBDIR0  = +$(MAKE) -C # space to separate -C and subdir
850 QUIET_SUBDIR1  =
851
852 ifneq ($(findstring $(MAKEFLAGS),w),w)
853 PRINT_DIR = --no-print-directory
854 else # "make -w"
855 NO_SUBDIR = :
856 endif
857
858 ifneq ($(findstring $(MAKEFLAGS),s),s)
859 ifndef V
860         QUIET_CC       = @echo '   ' CC $@;
861         QUIET_AR       = @echo '   ' AR $@;
862         QUIET_LINK     = @echo '   ' LINK $@;
863         QUIET_MKDIR    = @echo '   ' MKDIR $@;
864         QUIET_BUILT_IN = @echo '   ' BUILTIN $@;
865         QUIET_GEN      = @echo '   ' GEN $@;
866         QUIET_SUBDIR0  = +@subdir=
867         QUIET_SUBDIR1  = ;$(NO_SUBDIR) echo '   ' SUBDIR $$subdir; \
868                          $(MAKE) $(PRINT_DIR) -C $$subdir
869         export V
870         export QUIET_GEN
871         export QUIET_BUILT_IN
872 endif
873 endif
874
875 ifdef ASCIIDOC8
876         export ASCIIDOC8
877 endif
878
879 # Shell quote (do not use $(call) to accommodate ancient setups);
880
881 ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
882
883 DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
884 bindir_SQ = $(subst ','\'',$(bindir))
885 bindir_relative_SQ = $(subst ','\'',$(bindir_relative))
886 mandir_SQ = $(subst ','\'',$(mandir))
887 infodir_SQ = $(subst ','\'',$(infodir))
888 perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
889 template_dir_SQ = $(subst ','\'',$(template_dir))
890 htmldir_SQ = $(subst ','\'',$(htmldir))
891 prefix_SQ = $(subst ','\'',$(prefix))
892
893 SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
894 PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
895
896 LIBS = -Wl,--whole-archive $(PERFLIBS) -Wl,--no-whole-archive $(EXTLIBS)
897
898 BASIC_CFLAGS += $(COMPAT_CFLAGS)
899 LIB_OBJS += $(COMPAT_OBJS)
900
901 ALL_CFLAGS += $(BASIC_CFLAGS)
902 ALL_CFLAGS += $(ARCH_CFLAGS)
903 ALL_LDFLAGS += $(BASIC_LDFLAGS)
904
905 export TAR INSTALL DESTDIR SHELL_PATH
906
907
908 ### Build rules
909
910 SHELL = $(SHELL_PATH)
911
912 all:: shell_compatibility_test $(ALL_PROGRAMS) $(LANG_BINDINGS) $(BUILT_INS) $(OTHER_PROGRAMS) $(OUTPUT)PERF-BUILD-OPTIONS
913 ifneq (,$X)
914         $(foreach p,$(patsubst %$X,%,$(filter %$X,$(ALL_PROGRAMS) $(BUILT_INS) perf$X)), test '$p' -ef '$p$X' || $(RM) '$p';)
915 endif
916
917 all::
918
919 please_set_SHELL_PATH_to_a_more_modern_shell:
920         @$$(:)
921
922 shell_compatibility_test: please_set_SHELL_PATH_to_a_more_modern_shell
923
924 strip: $(PROGRAMS) $(OUTPUT)perf$X
925         $(STRIP) $(STRIP_OPTS) $(PROGRAMS) $(OUTPUT)perf$X
926
927 $(OUTPUT)perf.o: perf.c $(OUTPUT)common-cmds.h $(OUTPUT)PERF-CFLAGS
928         $(QUIET_CC)$(CC) -DPERF_VERSION='"$(PERF_VERSION)"' \
929                 '-DPERF_HTML_PATH="$(htmldir_SQ)"' \
930                 $(ALL_CFLAGS) -c $(filter %.c,$^) -o $@
931
932 $(OUTPUT)perf$X: $(OUTPUT)perf.o $(BUILTIN_OBJS) $(PERFLIBS)
933         $(QUIET_LINK)$(CC) $(ALL_CFLAGS) $(ALL_LDFLAGS) $(OUTPUT)perf.o \
934                $(BUILTIN_OBJS) $(LIBS) -o $@
935
936 $(OUTPUT)builtin-help.o: builtin-help.c $(OUTPUT)common-cmds.h $(OUTPUT)PERF-CFLAGS
937         $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) \
938                 '-DPERF_HTML_PATH="$(htmldir_SQ)"' \
939                 '-DPERF_MAN_PATH="$(mandir_SQ)"' \
940                 '-DPERF_INFO_PATH="$(infodir_SQ)"' $<
941
942 $(OUTPUT)builtin-timechart.o: builtin-timechart.c $(OUTPUT)common-cmds.h $(OUTPUT)PERF-CFLAGS
943         $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) \
944                 '-DPERF_HTML_PATH="$(htmldir_SQ)"' \
945                 '-DPERF_MAN_PATH="$(mandir_SQ)"' \
946                 '-DPERF_INFO_PATH="$(infodir_SQ)"' $<
947
948 $(BUILT_INS): $(OUTPUT)perf$X
949         $(QUIET_BUILT_IN)$(RM) $@ && \
950         ln perf$X $@ 2>/dev/null || \
951         ln -s perf$X $@ 2>/dev/null || \
952         cp perf$X $@
953
954 $(OUTPUT)common-cmds.h: util/generate-cmdlist.sh command-list.txt
955
956 $(OUTPUT)common-cmds.h: $(wildcard Documentation/perf-*.txt)
957         $(QUIET_GEN). util/generate-cmdlist.sh > $@+ && mv $@+ $@
958
959 $(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh
960         $(QUIET_GEN)$(RM) $(OUTPUT)$@ $(OUTPUT)$@+ && \
961         sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
962             -e 's|@SHELL_PATH@|$(SHELL_PATH_SQ)|' \
963             -e 's|@@PERL@@|$(PERL_PATH_SQ)|g' \
964             -e 's/@@PERF_VERSION@@/$(PERF_VERSION)/g' \
965             -e 's/@@NO_CURL@@/$(NO_CURL)/g' \
966             $@.sh > $(OUTPUT)$@+ && \
967         chmod +x $(OUTPUT)$@+ && \
968         mv $(OUTPUT)$@+ $(OUTPUT)$@
969
970 configure: configure.ac
971         $(QUIET_GEN)$(RM) $@ $<+ && \
972         sed -e 's/@@PERF_VERSION@@/$(PERF_VERSION)/g' \
973             $< > $<+ && \
974         autoconf -o $@ $<+ && \
975         $(RM) $<+
976
977 # These can record PERF_VERSION
978 $(OUTPUT)perf.o perf.spec \
979         $(patsubst %.sh,%,$(SCRIPT_SH)) \
980         $(patsubst %.perl,%,$(SCRIPT_PERL)) \
981         : $(OUTPUT)PERF-VERSION-FILE
982
983 $(OUTPUT)%.o: %.c $(OUTPUT)PERF-CFLAGS
984         $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $<
985 $(OUTPUT)%.s: %.c $(OUTPUT)PERF-CFLAGS
986         $(QUIET_CC)$(CC) -S $(ALL_CFLAGS) $<
987 $(OUTPUT)%.o: %.S
988         $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $<
989
990 $(OUTPUT)util/exec_cmd.o: util/exec_cmd.c $(OUTPUT)PERF-CFLAGS
991         $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) \
992                 '-DPERF_EXEC_PATH="$(perfexecdir_SQ)"' \
993                 '-DBINDIR="$(bindir_relative_SQ)"' \
994                 '-DPREFIX="$(prefix_SQ)"' \
995                 $<
996
997 $(OUTPUT)util/config.o: util/config.c $(OUTPUT)PERF-CFLAGS
998         $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DETC_PERFCONFIG='"$(ETC_PERFCONFIG_SQ)"' $<
999
1000 $(OUTPUT)util/ui/browser.o: util/ui/browser.c $(OUTPUT)PERF-CFLAGS
1001         $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DENABLE_SLFUTURE_CONST $<
1002
1003 $(OUTPUT)util/ui/browsers/annotate.o: util/ui/browsers/annotate.c $(OUTPUT)PERF-CFLAGS
1004         $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DENABLE_SLFUTURE_CONST $<
1005
1006 $(OUTPUT)util/ui/browsers/top.o: util/ui/browsers/top.c $(OUTPUT)PERF-CFLAGS
1007         $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DENABLE_SLFUTURE_CONST $<
1008
1009 $(OUTPUT)util/ui/browsers/hists.o: util/ui/browsers/hists.c $(OUTPUT)PERF-CFLAGS
1010         $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DENABLE_SLFUTURE_CONST $<
1011
1012 $(OUTPUT)util/ui/browsers/map.o: util/ui/browsers/map.c $(OUTPUT)PERF-CFLAGS
1013         $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DENABLE_SLFUTURE_CONST $<
1014
1015 $(OUTPUT)util/rbtree.o: ../../lib/rbtree.c $(OUTPUT)PERF-CFLAGS
1016         $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DETC_PERFCONFIG='"$(ETC_PERFCONFIG_SQ)"' $<
1017
1018 $(OUTPUT)util/scripting-engines/trace-event-perl.o: util/scripting-engines/trace-event-perl.c $(OUTPUT)PERF-CFLAGS
1019         $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $(PERL_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prototypes -Wno-unused-parameter -Wno-shadow $<
1020
1021 $(OUTPUT)scripts/perl/Perf-Trace-Util/Context.o: scripts/perl/Perf-Trace-Util/Context.c $(OUTPUT)PERF-CFLAGS
1022         $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $(PERL_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prototypes -Wno-unused-parameter -Wno-nested-externs $<
1023
1024 $(OUTPUT)util/scripting-engines/trace-event-python.o: util/scripting-engines/trace-event-python.c $(OUTPUT)PERF-CFLAGS
1025         $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $(PYTHON_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prototypes -Wno-unused-parameter -Wno-shadow $<
1026
1027 $(OUTPUT)scripts/python/Perf-Trace-Util/Context.o: scripts/python/Perf-Trace-Util/Context.c $(OUTPUT)PERF-CFLAGS
1028         $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $(PYTHON_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prototypes -Wno-unused-parameter -Wno-nested-externs $<
1029
1030 $(OUTPUT)perf-%$X: %.o $(PERFLIBS)
1031         $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
1032
1033 $(LIB_OBJS) $(BUILTIN_OBJS): $(LIB_H)
1034 $(patsubst perf-%$X,%.o,$(PROGRAMS)): $(LIB_H) $(wildcard */*.h)
1035
1036 # we compile into subdirectories. if the target directory is not the source directory, they might not exists. So
1037 # we depend the various files onto their directories.
1038 DIRECTORY_DEPS = $(LIB_OBJS) $(BUILTIN_OBJS) $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)common-cmds.h
1039 $(DIRECTORY_DEPS): | $(sort $(dir $(DIRECTORY_DEPS)))
1040 # In the second step, we make a rule to actually create these directories
1041 $(sort $(dir $(DIRECTORY_DEPS))):
1042         $(QUIET_MKDIR)$(MKDIR) -p $@ 2>/dev/null
1043
1044 $(LIB_FILE): $(LIB_OBJS)
1045         $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(LIB_OBJS)
1046
1047 help:
1048         @echo 'Perf make targets:'
1049         @echo '  doc            - make *all* documentation (see below)'
1050         @echo '  man            - make manpage documentation (access with man <foo>)'
1051         @echo '  html           - make html documentation'
1052         @echo '  info           - make GNU info documentation (access with info <foo>)'
1053         @echo '  pdf            - make pdf documentation'
1054         @echo '  TAGS           - use etags to make tag information for source browsing'
1055         @echo '  tags           - use ctags to make tag information for source browsing'
1056         @echo '  cscope - use cscope to make interactive browsing database'
1057         @echo ''
1058         @echo 'Perf install targets:'
1059         @echo '  NOTE: documentation build requires asciidoc, xmlto packages to be installed'
1060         @echo '  HINT: use "make prefix=<path> <install target>" to install to a particular'
1061         @echo '        path like make prefix=/usr/local install install-doc'
1062         @echo '  install        - install compiled binaries'
1063         @echo '  install-doc    - install *all* documentation'
1064         @echo '  install-man    - install manpage documentation'
1065         @echo '  install-html   - install html documentation'
1066         @echo '  install-info   - install GNU info documentation'
1067         @echo '  install-pdf    - install pdf documentation'
1068         @echo ''
1069         @echo '  quick-install-doc      - alias for quick-install-man'
1070         @echo '  quick-install-man      - install the documentation quickly'
1071         @echo '  quick-install-html     - install the html documentation quickly'
1072         @echo ''
1073         @echo 'Perf maintainer targets:'
1074         @echo '  distclean              - alias to clean'
1075         @echo '  clean                  - clean all binary objects and build output'
1076
1077 doc:
1078         $(MAKE) -C Documentation all
1079
1080 man:
1081         $(MAKE) -C Documentation man
1082
1083 html:
1084         $(MAKE) -C Documentation html
1085
1086 info:
1087         $(MAKE) -C Documentation info
1088
1089 pdf:
1090         $(MAKE) -C Documentation pdf
1091
1092 TAGS:
1093         $(RM) TAGS
1094         $(FIND) . -name '*.[hcS]' -print | xargs etags -a
1095
1096 tags:
1097         $(RM) tags
1098         $(FIND) . -name '*.[hcS]' -print | xargs ctags -a
1099
1100 cscope:
1101         $(RM) cscope*
1102         $(FIND) . -name '*.[hcS]' -print | xargs cscope -b
1103
1104 ### Detect prefix changes
1105 TRACK_CFLAGS = $(subst ','\'',$(ALL_CFLAGS)):\
1106              $(bindir_SQ):$(perfexecdir_SQ):$(template_dir_SQ):$(prefix_SQ)
1107
1108 $(OUTPUT)PERF-CFLAGS: .FORCE-PERF-CFLAGS
1109         @FLAGS='$(TRACK_CFLAGS)'; \
1110             if test x"$$FLAGS" != x"`cat $(OUTPUT)PERF-CFLAGS 2>/dev/null`" ; then \
1111                 echo 1>&2 "    * new build flags or prefix"; \
1112                 echo "$$FLAGS" >$(OUTPUT)PERF-CFLAGS; \
1113             fi
1114
1115 # We need to apply sq twice, once to protect from the shell
1116 # that runs $(OUTPUT)PERF-BUILD-OPTIONS, and then again to protect it
1117 # and the first level quoting from the shell that runs "echo".
1118 $(OUTPUT)PERF-BUILD-OPTIONS: .FORCE-PERF-BUILD-OPTIONS
1119         @echo SHELL_PATH=\''$(subst ','\'',$(SHELL_PATH_SQ))'\' >$@
1120         @echo TAR=\''$(subst ','\'',$(subst ','\'',$(TAR)))'\' >>$@
1121         @echo NO_CURL=\''$(subst ','\'',$(subst ','\'',$(NO_CURL)))'\' >>$@
1122         @echo NO_PERL=\''$(subst ','\'',$(subst ','\'',$(NO_PERL)))'\' >>$@
1123
1124 ### Testing rules
1125
1126 #
1127 # None right now:
1128 #
1129 # TEST_PROGRAMS += test-something$X
1130
1131 all:: $(TEST_PROGRAMS)
1132
1133 # GNU make supports exporting all variables by "export" without parameters.
1134 # However, the environment gets quite big, and some programs have problems
1135 # with that.
1136
1137 check: $(OUTPUT)common-cmds.h
1138         if sparse; \
1139         then \
1140                 for i in *.c */*.c; \
1141                 do \
1142                         sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i || exit; \
1143                 done; \
1144         else \
1145                 echo 2>&1 "Did you mean 'make test'?"; \
1146                 exit 1; \
1147         fi
1148
1149 remove-dashes:
1150         ./fixup-builtins $(BUILT_INS) $(PROGRAMS) $(SCRIPTS)
1151
1152 ### Installation rules
1153
1154 ifneq ($(filter /%,$(firstword $(template_dir))),)
1155 template_instdir = $(template_dir)
1156 else
1157 template_instdir = $(prefix)/$(template_dir)
1158 endif
1159 export template_instdir
1160
1161 ifneq ($(filter /%,$(firstword $(perfexecdir))),)
1162 perfexec_instdir = $(perfexecdir)
1163 else
1164 perfexec_instdir = $(prefix)/$(perfexecdir)
1165 endif
1166 perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
1167 export perfexec_instdir
1168
1169 install: all
1170         $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(bindir_SQ)'
1171         $(INSTALL) $(OUTPUT)perf$X '$(DESTDIR_SQ)$(bindir_SQ)'
1172         $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/Perf-Trace-Util/lib/Perf/Trace'
1173         $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/bin'
1174         $(INSTALL) $(OUTPUT)perf-archive -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)'
1175         $(INSTALL) scripts/perl/Perf-Trace-Util/lib/Perf/Trace/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/Perf-Trace-Util/lib/Perf/Trace'
1176         $(INSTALL) scripts/perl/*.pl -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl'
1177         $(INSTALL) scripts/perl/bin/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/bin'
1178         $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/Perf-Trace-Util/lib/Perf/Trace'
1179         $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/bin'
1180         $(INSTALL) scripts/python/Perf-Trace-Util/lib/Perf/Trace/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/Perf-Trace-Util/lib/Perf/Trace'
1181         $(INSTALL) scripts/python/*.py -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python'
1182         $(INSTALL) scripts/python/bin/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/bin'
1183
1184 ifdef BUILT_INS
1185         $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)'
1186         $(INSTALL) $(BUILT_INS) '$(DESTDIR_SQ)$(perfexec_instdir_SQ)'
1187 ifneq (,$X)
1188         $(foreach p,$(patsubst %$X,%,$(filter %$X,$(ALL_PROGRAMS) $(BUILT_INS) $(OUTPUT)perf$X)), $(RM) '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/$p';)
1189 endif
1190 endif
1191
1192 install-doc:
1193         $(MAKE) -C Documentation install
1194
1195 install-man:
1196         $(MAKE) -C Documentation install-man
1197
1198 install-html:
1199         $(MAKE) -C Documentation install-html
1200
1201 install-info:
1202         $(MAKE) -C Documentation install-info
1203
1204 install-pdf:
1205         $(MAKE) -C Documentation install-pdf
1206
1207 quick-install-doc:
1208         $(MAKE) -C Documentation quick-install
1209
1210 quick-install-man:
1211         $(MAKE) -C Documentation quick-install-man
1212
1213 quick-install-html:
1214         $(MAKE) -C Documentation quick-install-html
1215
1216
1217 ### Maintainer's dist rules
1218 #
1219 # None right now
1220 #
1221 #
1222 # perf.spec: perf.spec.in
1223 #       sed -e 's/@@VERSION@@/$(PERF_VERSION)/g' < $< > $@+
1224 #       mv $@+ $@
1225 #
1226 # PERF_TARNAME=perf-$(PERF_VERSION)
1227 # dist: perf.spec perf-archive$(X) configure
1228 #       ./perf-archive --format=tar \
1229 #               --prefix=$(PERF_TARNAME)/ HEAD^{tree} > $(PERF_TARNAME).tar
1230 #       @mkdir -p $(PERF_TARNAME)
1231 #       @cp perf.spec configure $(PERF_TARNAME)
1232 #       @echo $(PERF_VERSION) > $(PERF_TARNAME)/version
1233 #       $(TAR) rf $(PERF_TARNAME).tar \
1234 #               $(PERF_TARNAME)/perf.spec \
1235 #               $(PERF_TARNAME)/configure \
1236 #               $(PERF_TARNAME)/version
1237 #       @$(RM) -r $(PERF_TARNAME)
1238 #       gzip -f -9 $(PERF_TARNAME).tar
1239 #
1240 # htmldocs = perf-htmldocs-$(PERF_VERSION)
1241 # manpages = perf-manpages-$(PERF_VERSION)
1242 # dist-doc:
1243 #       $(RM) -r .doc-tmp-dir
1244 #       mkdir .doc-tmp-dir
1245 #       $(MAKE) -C Documentation WEBDOC_DEST=../.doc-tmp-dir install-webdoc
1246 #       cd .doc-tmp-dir && $(TAR) cf ../$(htmldocs).tar .
1247 #       gzip -n -9 -f $(htmldocs).tar
1248 #       :
1249 #       $(RM) -r .doc-tmp-dir
1250 #       mkdir -p .doc-tmp-dir/man1 .doc-tmp-dir/man5 .doc-tmp-dir/man7
1251 #       $(MAKE) -C Documentation DESTDIR=./ \
1252 #               man1dir=../.doc-tmp-dir/man1 \
1253 #               man5dir=../.doc-tmp-dir/man5 \
1254 #               man7dir=../.doc-tmp-dir/man7 \
1255 #               install
1256 #       cd .doc-tmp-dir && $(TAR) cf ../$(manpages).tar .
1257 #       gzip -n -9 -f $(manpages).tar
1258 #       $(RM) -r .doc-tmp-dir
1259 #
1260 # rpm: dist
1261 #       $(RPMBUILD) -ta $(PERF_TARNAME).tar.gz
1262
1263 ### Cleaning rules
1264
1265 distclean: clean
1266 #       $(RM) configure
1267
1268 clean:
1269         $(RM) $(OUTPUT){*.o,*/*.o,*/*/*.o,*/*/*/*.o,$(LIB_FILE),perf-archive}
1270         $(RM) $(ALL_PROGRAMS) $(BUILT_INS) perf$X
1271         $(RM) $(TEST_PROGRAMS)
1272         $(RM) *.spec *.pyc *.pyo */*.pyc */*.pyo $(OUTPUT)common-cmds.h TAGS tags cscope*
1273         $(RM) -r $(PERF_TARNAME) .doc-tmp-dir
1274         $(RM) $(PERF_TARNAME).tar.gz perf-core_$(PERF_VERSION)-*.tar.gz
1275         $(RM) $(htmldocs).tar.gz $(manpages).tar.gz
1276         $(MAKE) -C Documentation/ clean
1277         $(RM) $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)PERF-CFLAGS $(OUTPUT)PERF-BUILD-OPTIONS
1278         @python util/setup.py clean --build-lib='$(OUTPUT)python' \
1279                                    --build-temp='$(OUTPUT)python/temp'
1280
1281 .PHONY: all install clean strip
1282 .PHONY: shell_compatibility_test please_set_SHELL_PATH_to_a_more_modern_shell
1283 .PHONY: .FORCE-PERF-VERSION-FILE TAGS tags cscope .FORCE-PERF-CFLAGS
1284 .PHONY: .FORCE-PERF-BUILD-OPTIONS
1285
1286 ### Make sure built-ins do not have dups and listed in perf.c
1287 #
1288 check-builtins::
1289         ./check-builtins.sh
1290
1291 ### Test suite coverage testing
1292 #
1293 # None right now
1294 #
1295 # .PHONY: coverage coverage-clean coverage-build coverage-report
1296 #
1297 # coverage:
1298 #       $(MAKE) coverage-build
1299 #       $(MAKE) coverage-report
1300 #
1301 # coverage-clean:
1302 #       rm -f *.gcda *.gcno
1303 #
1304 # COVERAGE_CFLAGS = $(CFLAGS) -O0 -ftest-coverage -fprofile-arcs
1305 # COVERAGE_LDFLAGS = $(CFLAGS)  -O0 -lgcov
1306 #
1307 # coverage-build: coverage-clean
1308 #       $(MAKE) CFLAGS="$(COVERAGE_CFLAGS)" LDFLAGS="$(COVERAGE_LDFLAGS)" all
1309 #       $(MAKE) CFLAGS="$(COVERAGE_CFLAGS)" LDFLAGS="$(COVERAGE_LDFLAGS)" \
1310 #               -j1 test
1311 #
1312 # coverage-report:
1313 #       gcov -b *.c */*.c
1314 #       grep '^function.*called 0 ' *.c.gcov */*.c.gcov \
1315 #               | sed -e 's/\([^:]*\)\.gcov: *function \([^ ]*\) called.*/\1: \2/' \
1316 #               | tee coverage-untested-functions