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