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