tools/perf/build: Split out feature check: 'libelf-getphdrnum'
[linux-2.6-block.git] / tools / perf / config / Makefile
CommitLineData
8bd407b9
JO
1uname_M := $(shell uname -m 2>/dev/null || echo not)
2
3ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \
8e1b3f68
JO
4 -e s/arm.*/arm/ -e s/sa110/arm/ \
5 -e s/s390x/s390/ -e s/parisc64/parisc/ \
6 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
7 -e s/sh[234].*/sh/ -e s/aarch64.*/arm64/ )
8bd407b9 8NO_PERF_REGS := 1
9c12cf95 9CFLAGS := $(EXTRA_CFLAGS) $(EXTRA_WARNINGS)
8bd407b9
JO
10
11# Additional ARCH settings for x86
12ifeq ($(ARCH),i386)
8e1b3f68
JO
13 override ARCH := x86
14 NO_PERF_REGS := 0
15 LIBUNWIND_LIBS = -lunwind -lunwind-x86
8bd407b9
JO
16endif
17
18ifeq ($(ARCH),x86_64)
8e1b3f68
JO
19 override ARCH := x86
20 IS_X86_64 := 0
21 ifeq (, $(findstring m32,$(CFLAGS)))
22 IS_X86_64 := $(shell echo __x86_64__ | ${CC} -E -x c - | tail -n 1)
23 endif
24 ifeq (${IS_X86_64}, 1)
25 RAW_ARCH := x86_64
89fe808a 26 CFLAGS += -DHAVE_ARCH_X86_64_SUPPORT
8e1b3f68
JO
27 ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S ../../arch/x86/lib/memset_64.S
28 endif
29 NO_PERF_REGS := 0
30 LIBUNWIND_LIBS = -lunwind -lunwind-x86_64
8bd407b9
JO
31endif
32
33ifeq ($(NO_PERF_REGS),0)
89fe808a 34 CFLAGS += -DHAVE_PERF_REGS_SUPPORT
8bd407b9 35endif
a32f4936 36
7c53746e
JO
37ifeq ($(src-perf),)
38src-perf := $(srctree)/tools/perf
39endif
40
41ifeq ($(obj-perf),)
107de372 42obj-perf := $(OUTPUT)
7c53746e
JO
43endif
44
45ifneq ($(obj-perf),)
46obj-perf := $(abspath $(obj-perf))/
47endif
48
4e319027
RR
49LIB_INCLUDE := $(srctree)/tools/lib/
50
7c53746e
JO
51# include ARCH specific config
52-include $(src-perf)/arch/$(ARCH)/Makefile
53
54include $(src-perf)/config/feature-tests.mak
55include $(src-perf)/config/utilities.mak
a32f4936
JO
56
57ifeq ($(call get-executable,$(FLEX)),)
8e1b3f68 58 dummy := $(error Error: $(FLEX) is missing on this system, please install it)
a32f4936
JO
59endif
60
61ifeq ($(call get-executable,$(BISON)),)
8e1b3f68 62 dummy := $(error Error: $(BISON) is missing on this system, please install it)
a32f4936 63endif
362493f0
JO
64
65# Treat warnings as errors unless directed not to
66ifneq ($(WERROR),0)
8e1b3f68 67 CFLAGS += -Werror
362493f0
JO
68endif
69
70ifeq ("$(origin DEBUG)", "command line")
8e1b3f68 71 PERF_DEBUG = $(DEBUG)
362493f0
JO
72endif
73ifndef PERF_DEBUG
8e1b3f68 74 CFLAGS += -O6
362493f0
JO
75endif
76
77ifdef PARSER_DEBUG
8e1b3f68
JO
78 PARSER_DEBUG_BISON := -t
79 PARSER_DEBUG_FLEX := -d
80 CFLAGS += -DPARSER_DEBUG
362493f0
JO
81endif
82
2fe73746
JO
83CFLAGS += -fno-omit-frame-pointer
84CFLAGS += -ggdb3
85CFLAGS += -funwind-tables
86CFLAGS += -Wall
87CFLAGS += -Wextra
88CFLAGS += -std=gnu99
9c12cf95 89
6d19912c 90EXTLIBS = -lelf -lpthread -lrt -lm -ldl
362493f0 91
b6aa9979
IM
92feature_check = $(eval $(feature_check_code)); $(info CHK: config/feature-checks/test-$(1))
93define feature_check_code
94 feature-$(2) := $(shell make -C config/feature-checks test-$1 >/dev/null 2>/dev/null && echo 1 || echo 0)
95endef
96
97#
98# Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output:
99#
100$(info Testing features:)
101$(shell make -i -j -C config/feature-checks >/dev/null 2>&1)
102$(info done)
103
3ae069cf
IM
104FEATURE_TESTS = \
105 hello \
90ac5422 106 stackprotector-all \
430be5ab 107 stackprotector \
c2510445 108 volatile-register-var \
1ea6f99e 109 fortify-source \
78e9d655 110 bionic \
8f7f8005 111 libelf \
e12762cf 112 glibc \
8295d4e2 113 dwarf \
8869b17e 114 libelf-mmap \
b7bcef6f 115 libelf-getphdrnum \
3ae069cf 116 libnuma
b6aa9979
IM
117
118$(foreach test,$(FEATURE_TESTS),$(call feature_check,$(test),$(test)))
119
90ac5422 120ifeq ($(feature-stackprotector-all), 1)
8e1b3f68 121 CFLAGS += -fstack-protector-all
362493f0
JO
122endif
123
430be5ab 124ifeq ($(feature-stackprotector), 1)
8e1b3f68 125 CFLAGS += -Wstack-protector
362493f0
JO
126endif
127
c2510445 128ifeq ($(feature-volatile-register-var), 1)
8e1b3f68 129 CFLAGS += -Wvolatile-register-var
362493f0
JO
130endif
131
132ifndef PERF_DEBUG
1ea6f99e 133 ifeq ($(feature-fortify-source), 1)
8e1b3f68
JO
134 CFLAGS += -D_FORTIFY_SOURCE=2
135 endif
362493f0
JO
136endif
137
2fe73746
JO
138CFLAGS += -I$(src-perf)/util/include
139CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
140CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
141CFLAGS += -I$(srctree)/arch/$(ARCH)/include
142CFLAGS += -I$(srctree)/include/uapi
143CFLAGS += -I$(srctree)/include
7c53746e
JO
144
145# $(obj-perf) for generated common-cmds.h
146# $(obj-perf)/util for generated bison/flex headers
147ifneq ($(OUTPUT),)
2fe73746
JO
148CFLAGS += -I$(obj-perf)/util
149CFLAGS += -I$(obj-perf)
7c53746e
JO
150endif
151
2fe73746
JO
152CFLAGS += -I$(src-perf)/util
153CFLAGS += -I$(src-perf)
4e319027 154CFLAGS += -I$(LIB_INCLUDE)
7c53746e 155
2fe73746 156CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
362493f0 157
4e22db46 158ifndef NO_BIONIC
78e9d655
IM
159 $(feature_check,bionic)
160 ifeq ($(feature-bionic), 1)
161 BIONIC := 1
162 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
163 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
164 endif
362493f0 165endif
cf4cca10
JO
166
167ifdef NO_LIBELF
8e1b3f68
JO
168 NO_DWARF := 1
169 NO_DEMANGLE := 1
170 NO_LIBUNWIND := 1
cf4cca10 171else
8f7f8005 172 ifeq ($(feature-libelf), 0)
e12762cf 173 ifeq ($(feature-glibc), 1)
50eed7a7
IM
174 LIBC_SUPPORT := 1
175 endif
176 ifeq ($(BIONIC),1)
177 LIBC_SUPPORT := 1
178 endif
179 ifeq ($(LIBC_SUPPORT),1)
180 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
181
182 NO_LIBELF := 1
183 NO_DWARF := 1
184 NO_DEMANGLE := 1
185 else
186 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
187 endif
8e1b3f68 188 else
50eed7a7
IM
189 # for linking with debug library, run like:
190 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
191 ifdef LIBDW_DIR
192 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
193 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
194 endif
195
8295d4e2 196 ifneq ($(feature-dwarf), 1)
50eed7a7
IM
197 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);
198 NO_DWARF := 1
199 endif # Dwarf support
200 endif # SOURCE_LIBELF
cf4cca10
JO
201endif # NO_LIBELF
202
203ifndef NO_LIBELF
fb3d333b
IM
204 CFLAGS += -DHAVE_LIBELF_SUPPORT
205 FLAGS_LIBELF=$(CFLAGS) $(LDFLAGS) $(EXTLIBS)
779724fd 206
8869b17e 207 ifeq ($(feature-libelf-mmap), 1)
fb3d333b
IM
208 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
209 endif
779724fd 210
b7bcef6f 211 ifeq ($(feature-libelf-getphdrnum), 1)
fb3d333b
IM
212 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
213 endif
214
215 # include ARCH specific config
216 -include $(src-perf)/arch/$(ARCH)/Makefile
779724fd 217
fb3d333b
IM
218 ifndef NO_DWARF
219 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
220 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
221 NO_DWARF := 1
222 else
223 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
224 LDFLAGS += $(LIBDW_LDFLAGS)
225 EXTLIBS += -lelf -ldw
226 endif # PERF_HAVE_DWARF_REGS
227 endif # NO_DWARF
cf4cca10 228endif # NO_LIBELF
0e433feb 229
1e9f7aad 230ifndef NO_LIBELF
fb3d333b 231 CFLAGS += -DHAVE_LIBELF_SUPPORT
8869b17e 232 ifeq ($(feature-libelf-mmap), 1)
fb3d333b 233 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
b7bcef6f 234 endif
1e9f7aad
JO
235endif # NO_LIBELF
236
0e433feb
JO
237# There's only x86 (both 32 and 64) support for CFI unwind so far
238ifneq ($(ARCH),x86)
8e1b3f68 239 NO_LIBUNWIND := 1
0e433feb
JO
240endif
241
242ifndef NO_LIBUNWIND
243# for linking with debug library, run like:
244# make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
245ifdef LIBUNWIND_DIR
8e1b3f68
JO
246 LIBUNWIND_CFLAGS := -I$(LIBUNWIND_DIR)/include
247 LIBUNWIND_LDFLAGS := -L$(LIBUNWIND_DIR)/lib
0e433feb
JO
248endif
249
1e9f7aad 250FLAGS_UNWIND=$(LIBUNWIND_CFLAGS) $(CFLAGS) $(LIBUNWIND_LDFLAGS) $(LDFLAGS) $(EXTLIBS) $(LIBUNWIND_LIBS)
0e433feb 251ifneq ($(call try-cc,$(SOURCE_LIBUNWIND),$(FLAGS_UNWIND),libunwind),y)
8e1b3f68
JO
252 msg := $(warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 0.99);
253 NO_LIBUNWIND := 1
0e433feb
JO
254endif # Libunwind support
255endif # NO_LIBUNWIND
256
257ifndef NO_LIBUNWIND
89fe808a 258 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
8e1b3f68
JO
259 EXTLIBS += $(LIBUNWIND_LIBS)
260 CFLAGS += $(LIBUNWIND_CFLAGS)
261 LDFLAGS += $(LIBUNWIND_LDFLAGS)
0e433feb 262endif # NO_LIBUNWIND
a8279525
JO
263
264ifndef NO_LIBAUDIT
8e1b3f68
JO
265 FLAGS_LIBAUDIT = $(CFLAGS) $(LDFLAGS) -laudit
266 ifneq ($(call try-cc,$(SOURCE_LIBAUDIT),$(FLAGS_LIBAUDIT),libaudit),y)
267 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
268 NO_LIBAUDIT := 1
269 else
89fe808a 270 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
8e1b3f68
JO
271 EXTLIBS += -laudit
272 endif
a8279525 273endif
4a8f888a
JO
274
275ifdef NO_NEWT
8e1b3f68 276 NO_SLANG=1
4a8f888a
JO
277endif
278
279ifndef NO_SLANG
8e1b3f68
JO
280 FLAGS_SLANG=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -I/usr/include/slang -lslang
281 ifneq ($(call try-cc,$(SOURCE_SLANG),$(FLAGS_SLANG),libslang),y)
282 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
283 NO_SLANG := 1
284 else
285 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
286 CFLAGS += -I/usr/include/slang
89fe808a 287 CFLAGS += -DHAVE_SLANG_SUPPORT
8e1b3f68
JO
288 EXTLIBS += -lslang
289 endif
4a8f888a 290endif
58cabf6a
JO
291
292ifndef NO_GTK2
8e1b3f68
JO
293 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null)
294 ifneq ($(call try-cc,$(SOURCE_GTK2),$(FLAGS_GTK2),gtk2),y)
295 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
296 NO_GTK2 := 1
297 else
89fe808a
IM
298 ifeq ($(call try-cc,$(SOURCE_GTK2_INFOBAR),$(FLAGS_GTK2),-DHAVE_GTK_INFO_BAR_SUPPORT),y)
299 CFLAGS += -DHAVE_GTK_INFO_BAR_SUPPORT
8e1b3f68 300 endif
89fe808a 301 CFLAGS += -DHAVE_GTK2_SUPPORT
8e1b3f68
JO
302 CFLAGS += $(shell pkg-config --cflags gtk+-2.0 2>/dev/null)
303 EXTLIBS += $(shell pkg-config --libs gtk+-2.0 2>/dev/null)
304 endif
58cabf6a 305endif
3082cb33
JO
306
307grep-libs = $(filter -l%,$(1))
308strip-libs = $(filter-out -l%,$(1))
309
310ifdef NO_LIBPERL
8e1b3f68 311 CFLAGS += -DNO_LIBPERL
3082cb33 312else
8e1b3f68
JO
313 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
314 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
315 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
316 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
317 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
318
319 ifneq ($(call try-cc,$(SOURCE_PERL_EMBED),$(FLAGS_PERL_EMBED),perl),y)
320 CFLAGS += -DNO_LIBPERL
321 NO_LIBPERL := 1
322 else
323 LDFLAGS += $(PERL_EMBED_LDFLAGS)
324 EXTLIBS += $(PERL_EMBED_LIBADD)
325 endif
3082cb33 326endif
6e533cf1
JO
327
328disable-python = $(eval $(disable-python_code))
329define disable-python_code
9c12cf95 330 CFLAGS += -DNO_LIBPYTHON
6e533cf1
JO
331 $(if $(1),$(warning No $(1) was found))
332 $(warning Python support will not be built)
333 NO_LIBPYTHON := 1
334endef
335
336override PYTHON := \
337 $(call get-executable-or-default,PYTHON,python)
338
339ifndef PYTHON
340 $(call disable-python,python interpreter)
341else
342
343 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
344
345 ifdef NO_LIBPYTHON
346 $(call disable-python)
347 else
348
349 override PYTHON_CONFIG := \
350 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
351
352 ifndef PYTHON_CONFIG
353 $(call disable-python,python-config tool)
354 else
355
356 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
357
358 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
359 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
360 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
361 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
362 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
363
364 ifneq ($(call try-cc,$(SOURCE_PYTHON_EMBED),$(FLAGS_PYTHON_EMBED),python),y)
365 $(call disable-python,Python.h (for Python 2.x))
366 else
367
368 ifneq ($(call try-cc,$(SOURCE_PYTHON_VERSION),$(FLAGS_PYTHON_EMBED),python version),y)
369 $(warning Python 3 is not yet supported; please set)
370 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
371 $(warning If you also have Python 2 installed, then)
372 $(warning try something like:)
373 $(warning $(and ,))
374 $(warning $(and ,) make PYTHON=python2)
375 $(warning $(and ,))
376 $(warning Otherwise, disable Python support entirely:)
377 $(warning $(and ,))
378 $(warning $(and ,) make NO_LIBPYTHON=1)
379 $(warning $(and ,))
380 $(error $(and ,))
381 else
1e9f7aad 382 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
6e533cf1 383 EXTLIBS += $(PYTHON_EMBED_LIBADD)
7c53746e 384 LANG_BINDINGS += $(obj-perf)python/perf.so
6e533cf1
JO
385 endif
386 endif
387 endif
388 endif
389endif
c3cf8368
JO
390
391ifdef NO_DEMANGLE
8e1b3f68 392 CFLAGS += -DNO_DEMANGLE
c3cf8368 393else
89fe808a 394 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
8e1b3f68 395 EXTLIBS += -liberty
89fe808a 396 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
8e1b3f68
JO
397 else
398 FLAGS_BFD=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -DPACKAGE='perf' -lbfd
399 has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD),libbfd)
400 ifeq ($(has_bfd),y)
401 EXTLIBS += -lbfd
402 else
403 FLAGS_BFD_IBERTY=$(FLAGS_BFD) -liberty
404 has_bfd_iberty := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY),liberty)
405 ifeq ($(has_bfd_iberty),y)
406 EXTLIBS += -lbfd -liberty
407 else
408 FLAGS_BFD_IBERTY_Z=$(FLAGS_BFD_IBERTY) -lz
409 has_bfd_iberty_z := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY_Z),libz)
410 ifeq ($(has_bfd_iberty_z),y)
411 EXTLIBS += -lbfd -liberty -lz
412 else
413 FLAGS_CPLUS_DEMANGLE=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -liberty
414 has_cplus_demangle := $(call try-cc,$(SOURCE_CPLUS_DEMANGLE),$(FLAGS_CPLUS_DEMANGLE),demangle)
415 ifeq ($(has_cplus_demangle),y)
416 EXTLIBS += -liberty
89fe808a 417 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
8e1b3f68
JO
418 else
419 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
420 CFLAGS += -DNO_DEMANGLE
421 endif
422 endif
423 endif
424 endif
425 endif
c3cf8368 426endif
a1c7c9e7
JO
427
428ifndef NO_STRLCPY
89fe808a
IM
429 ifeq ($(call try-cc,$(SOURCE_STRLCPY),,-DHAVE_STRLCPY_SUPPORT),y)
430 CFLAGS += -DHAVE_STRLCPY_SUPPORT
8e1b3f68 431 endif
a1c7c9e7
JO
432endif
433
434ifndef NO_ON_EXIT
89fe808a
IM
435 ifeq ($(call try-cc,$(SOURCE_ON_EXIT),,-DHAVE_ON_EXIT_SUPPORT),y)
436 CFLAGS += -DHAVE_ON_EXIT_SUPPORT
8e1b3f68 437 endif
a1c7c9e7
JO
438endif
439
440ifndef NO_BACKTRACE
89fe808a
IM
441 ifeq ($(call try-cc,$(SOURCE_BACKTRACE),,-DHAVE_BACKTRACE_SUPPORT),y)
442 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
8e1b3f68 443 endif
a1c7c9e7 444endif
58a0abd7
JO
445
446ifndef NO_LIBNUMA
3ae069cf 447 ifeq ($(feature-libnuma), 0)
8e1b3f68
JO
448 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numa-libs-devel or libnuma-dev);
449 NO_LIBNUMA := 1
450 else
89fe808a 451 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
8e1b3f68
JO
452 EXTLIBS += -lnuma
453 endif
58a0abd7 454endif
cd1c39f2
JO
455
456# Among the variables below, these:
457# perfexecdir
458# template_dir
459# mandir
460# infodir
461# htmldir
462# ETC_PERFCONFIG (but not sysconfdir)
463# can be specified as a relative path some/where/else;
464# this is interpreted as relative to $(prefix) and "perf" at
465# runtime figures out where they are based on the path to the executable.
466# This can help installing the suite in a relocatable way.
467
468# Make the path relative to DESTDIR, not to prefix
469ifndef DESTDIR
470prefix = $(HOME)
471endif
472bindir_relative = bin
473bindir = $(prefix)/$(bindir_relative)
474mandir = share/man
475infodir = share/info
476perfexecdir = libexec/perf-core
477sharedir = $(prefix)/share
478template_dir = share/perf-core/templates
479htmldir = share/doc/perf-doc
480ifeq ($(prefix),/usr)
481sysconfdir = /etc
482ETC_PERFCONFIG = $(sysconfdir)/perfconfig
483else
484sysconfdir = $(prefix)/etc
485ETC_PERFCONFIG = etc/perfconfig
486endif
487lib = lib
488
489# Shell quote (do not use $(call) to accommodate ancient setups);
490ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
491DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
492bindir_SQ = $(subst ','\'',$(bindir))
493mandir_SQ = $(subst ','\'',$(mandir))
494infodir_SQ = $(subst ','\'',$(infodir))
495perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
496template_dir_SQ = $(subst ','\'',$(template_dir))
497htmldir_SQ = $(subst ','\'',$(htmldir))
498prefix_SQ = $(subst ','\'',$(prefix))
499sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
500
501ifneq ($(filter /%,$(firstword $(perfexecdir))),)
502perfexec_instdir = $(perfexecdir)
503else
504perfexec_instdir = $(prefix)/$(perfexecdir)
505endif
506perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))