tools/perf/build: Split out feature check: 'libperl'
[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 \
058f952d 116 libunwind \
d795a658 117 libaudit \
b9498b50 118 libslang \
7ef9e055 119 gtk2 \
c7a79e96 120 gtk2-infobar \
7181a671 121 libperl \
3ae069cf 122 libnuma
b6aa9979
IM
123
124$(foreach test,$(FEATURE_TESTS),$(call feature_check,$(test),$(test)))
125
90ac5422 126ifeq ($(feature-stackprotector-all), 1)
8e1b3f68 127 CFLAGS += -fstack-protector-all
362493f0
JO
128endif
129
430be5ab 130ifeq ($(feature-stackprotector), 1)
8e1b3f68 131 CFLAGS += -Wstack-protector
362493f0
JO
132endif
133
c2510445 134ifeq ($(feature-volatile-register-var), 1)
8e1b3f68 135 CFLAGS += -Wvolatile-register-var
362493f0
JO
136endif
137
138ifndef PERF_DEBUG
1ea6f99e 139 ifeq ($(feature-fortify-source), 1)
8e1b3f68
JO
140 CFLAGS += -D_FORTIFY_SOURCE=2
141 endif
362493f0
JO
142endif
143
2fe73746
JO
144CFLAGS += -I$(src-perf)/util/include
145CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
146CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
147CFLAGS += -I$(srctree)/arch/$(ARCH)/include
148CFLAGS += -I$(srctree)/include/uapi
149CFLAGS += -I$(srctree)/include
7c53746e
JO
150
151# $(obj-perf) for generated common-cmds.h
152# $(obj-perf)/util for generated bison/flex headers
153ifneq ($(OUTPUT),)
2fe73746
JO
154CFLAGS += -I$(obj-perf)/util
155CFLAGS += -I$(obj-perf)
7c53746e
JO
156endif
157
2fe73746
JO
158CFLAGS += -I$(src-perf)/util
159CFLAGS += -I$(src-perf)
4e319027 160CFLAGS += -I$(LIB_INCLUDE)
7c53746e 161
2fe73746 162CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
362493f0 163
4e22db46 164ifndef NO_BIONIC
78e9d655
IM
165 $(feature_check,bionic)
166 ifeq ($(feature-bionic), 1)
167 BIONIC := 1
168 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
169 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
170 endif
362493f0 171endif
cf4cca10
JO
172
173ifdef NO_LIBELF
8e1b3f68
JO
174 NO_DWARF := 1
175 NO_DEMANGLE := 1
176 NO_LIBUNWIND := 1
cf4cca10 177else
8f7f8005 178 ifeq ($(feature-libelf), 0)
e12762cf 179 ifeq ($(feature-glibc), 1)
50eed7a7
IM
180 LIBC_SUPPORT := 1
181 endif
182 ifeq ($(BIONIC),1)
183 LIBC_SUPPORT := 1
184 endif
185 ifeq ($(LIBC_SUPPORT),1)
186 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
187
188 NO_LIBELF := 1
189 NO_DWARF := 1
190 NO_DEMANGLE := 1
191 else
192 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
193 endif
8e1b3f68 194 else
50eed7a7
IM
195 # for linking with debug library, run like:
196 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
197 ifdef LIBDW_DIR
198 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
199 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
200 endif
201
8295d4e2 202 ifneq ($(feature-dwarf), 1)
50eed7a7
IM
203 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);
204 NO_DWARF := 1
205 endif # Dwarf support
206 endif # SOURCE_LIBELF
cf4cca10
JO
207endif # NO_LIBELF
208
209ifndef NO_LIBELF
fb3d333b
IM
210 CFLAGS += -DHAVE_LIBELF_SUPPORT
211 FLAGS_LIBELF=$(CFLAGS) $(LDFLAGS) $(EXTLIBS)
779724fd 212
8869b17e 213 ifeq ($(feature-libelf-mmap), 1)
fb3d333b
IM
214 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
215 endif
779724fd 216
b7bcef6f 217 ifeq ($(feature-libelf-getphdrnum), 1)
fb3d333b
IM
218 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
219 endif
220
221 # include ARCH specific config
222 -include $(src-perf)/arch/$(ARCH)/Makefile
779724fd 223
fb3d333b
IM
224 ifndef NO_DWARF
225 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
226 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
227 NO_DWARF := 1
228 else
229 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
230 LDFLAGS += $(LIBDW_LDFLAGS)
231 EXTLIBS += -lelf -ldw
232 endif # PERF_HAVE_DWARF_REGS
233 endif # NO_DWARF
cf4cca10 234endif # NO_LIBELF
0e433feb 235
1e9f7aad 236ifndef NO_LIBELF
fb3d333b 237 CFLAGS += -DHAVE_LIBELF_SUPPORT
8869b17e 238 ifeq ($(feature-libelf-mmap), 1)
fb3d333b 239 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
b7bcef6f 240 endif
1e9f7aad
JO
241endif # NO_LIBELF
242
0e433feb
JO
243# There's only x86 (both 32 and 64) support for CFI unwind so far
244ifneq ($(ARCH),x86)
8e1b3f68 245 NO_LIBUNWIND := 1
0e433feb
JO
246endif
247
248ifndef NO_LIBUNWIND
058f952d
IM
249 #
250 # For linking with debug library, run like:
251 #
252 # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
253 #
308e1e70
IM
254 ifdef LIBUNWIND_DIR
255 LIBUNWIND_CFLAGS := -I$(LIBUNWIND_DIR)/include
256 LIBUNWIND_LDFLAGS := -L$(LIBUNWIND_DIR)/lib
257 endif
0e433feb 258
058f952d 259 ifneq ($(feature-libunwind), 1)
308e1e70
IM
260 msg := $(warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 0.99);
261 NO_LIBUNWIND := 1
262 endif
263endif
0e433feb
JO
264
265ifndef NO_LIBUNWIND
89fe808a 266 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
8e1b3f68
JO
267 EXTLIBS += $(LIBUNWIND_LIBS)
268 CFLAGS += $(LIBUNWIND_CFLAGS)
269 LDFLAGS += $(LIBUNWIND_LDFLAGS)
058f952d 270endif
a8279525
JO
271
272ifndef NO_LIBAUDIT
d795a658 273 ifneq ($(feature-libaudit), 1)
8e1b3f68
JO
274 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
275 NO_LIBAUDIT := 1
276 else
89fe808a 277 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
8e1b3f68
JO
278 EXTLIBS += -laudit
279 endif
a8279525 280endif
4a8f888a
JO
281
282ifdef NO_NEWT
8e1b3f68 283 NO_SLANG=1
4a8f888a
JO
284endif
285
286ifndef NO_SLANG
b9498b50 287 ifneq ($(feature-libslang), 1)
8e1b3f68
JO
288 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
289 NO_SLANG := 1
290 else
291 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
292 CFLAGS += -I/usr/include/slang
89fe808a 293 CFLAGS += -DHAVE_SLANG_SUPPORT
8e1b3f68
JO
294 EXTLIBS += -lslang
295 endif
4a8f888a 296endif
58cabf6a
JO
297
298ifndef NO_GTK2
8e1b3f68 299 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null)
7ef9e055 300 ifneq ($(feature-gtk2), 1)
8e1b3f68
JO
301 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
302 NO_GTK2 := 1
303 else
c7a79e96 304 ifeq ($(feature-gtk2-infobar), 1)
89fe808a 305 CFLAGS += -DHAVE_GTK_INFO_BAR_SUPPORT
8e1b3f68 306 endif
89fe808a 307 CFLAGS += -DHAVE_GTK2_SUPPORT
8e1b3f68
JO
308 CFLAGS += $(shell pkg-config --cflags gtk+-2.0 2>/dev/null)
309 EXTLIBS += $(shell pkg-config --libs gtk+-2.0 2>/dev/null)
310 endif
58cabf6a 311endif
3082cb33
JO
312
313grep-libs = $(filter -l%,$(1))
314strip-libs = $(filter-out -l%,$(1))
315
316ifdef NO_LIBPERL
8e1b3f68 317 CFLAGS += -DNO_LIBPERL
3082cb33 318else
8e1b3f68
JO
319 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
320 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
321 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
322 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
323 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
324
7181a671 325 ifneq ($(feature-libperl), 1)
8e1b3f68
JO
326 CFLAGS += -DNO_LIBPERL
327 NO_LIBPERL := 1
328 else
329 LDFLAGS += $(PERL_EMBED_LDFLAGS)
330 EXTLIBS += $(PERL_EMBED_LIBADD)
331 endif
3082cb33 332endif
6e533cf1
JO
333
334disable-python = $(eval $(disable-python_code))
335define disable-python_code
9c12cf95 336 CFLAGS += -DNO_LIBPYTHON
6e533cf1
JO
337 $(if $(1),$(warning No $(1) was found))
338 $(warning Python support will not be built)
339 NO_LIBPYTHON := 1
340endef
341
342override PYTHON := \
343 $(call get-executable-or-default,PYTHON,python)
344
345ifndef PYTHON
346 $(call disable-python,python interpreter)
347else
348
349 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
350
351 ifdef NO_LIBPYTHON
352 $(call disable-python)
353 else
354
355 override PYTHON_CONFIG := \
356 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
357
358 ifndef PYTHON_CONFIG
359 $(call disable-python,python-config tool)
360 else
361
362 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
363
364 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
365 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
366 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
367 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
368 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
369
370 ifneq ($(call try-cc,$(SOURCE_PYTHON_EMBED),$(FLAGS_PYTHON_EMBED),python),y)
371 $(call disable-python,Python.h (for Python 2.x))
372 else
373
374 ifneq ($(call try-cc,$(SOURCE_PYTHON_VERSION),$(FLAGS_PYTHON_EMBED),python version),y)
375 $(warning Python 3 is not yet supported; please set)
376 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
377 $(warning If you also have Python 2 installed, then)
378 $(warning try something like:)
379 $(warning $(and ,))
380 $(warning $(and ,) make PYTHON=python2)
381 $(warning $(and ,))
382 $(warning Otherwise, disable Python support entirely:)
383 $(warning $(and ,))
384 $(warning $(and ,) make NO_LIBPYTHON=1)
385 $(warning $(and ,))
386 $(error $(and ,))
387 else
1e9f7aad 388 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
6e533cf1 389 EXTLIBS += $(PYTHON_EMBED_LIBADD)
7c53746e 390 LANG_BINDINGS += $(obj-perf)python/perf.so
6e533cf1
JO
391 endif
392 endif
393 endif
394 endif
395endif
c3cf8368
JO
396
397ifdef NO_DEMANGLE
8e1b3f68 398 CFLAGS += -DNO_DEMANGLE
c3cf8368 399else
89fe808a 400 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
8e1b3f68 401 EXTLIBS += -liberty
89fe808a 402 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
8e1b3f68
JO
403 else
404 FLAGS_BFD=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -DPACKAGE='perf' -lbfd
405 has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD),libbfd)
406 ifeq ($(has_bfd),y)
407 EXTLIBS += -lbfd
408 else
409 FLAGS_BFD_IBERTY=$(FLAGS_BFD) -liberty
410 has_bfd_iberty := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY),liberty)
411 ifeq ($(has_bfd_iberty),y)
412 EXTLIBS += -lbfd -liberty
413 else
414 FLAGS_BFD_IBERTY_Z=$(FLAGS_BFD_IBERTY) -lz
415 has_bfd_iberty_z := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY_Z),libz)
416 ifeq ($(has_bfd_iberty_z),y)
417 EXTLIBS += -lbfd -liberty -lz
418 else
419 FLAGS_CPLUS_DEMANGLE=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -liberty
420 has_cplus_demangle := $(call try-cc,$(SOURCE_CPLUS_DEMANGLE),$(FLAGS_CPLUS_DEMANGLE),demangle)
421 ifeq ($(has_cplus_demangle),y)
422 EXTLIBS += -liberty
89fe808a 423 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
8e1b3f68
JO
424 else
425 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
426 CFLAGS += -DNO_DEMANGLE
427 endif
428 endif
429 endif
430 endif
431 endif
c3cf8368 432endif
a1c7c9e7
JO
433
434ifndef NO_STRLCPY
89fe808a
IM
435 ifeq ($(call try-cc,$(SOURCE_STRLCPY),,-DHAVE_STRLCPY_SUPPORT),y)
436 CFLAGS += -DHAVE_STRLCPY_SUPPORT
8e1b3f68 437 endif
a1c7c9e7
JO
438endif
439
440ifndef NO_ON_EXIT
89fe808a
IM
441 ifeq ($(call try-cc,$(SOURCE_ON_EXIT),,-DHAVE_ON_EXIT_SUPPORT),y)
442 CFLAGS += -DHAVE_ON_EXIT_SUPPORT
8e1b3f68 443 endif
a1c7c9e7
JO
444endif
445
446ifndef NO_BACKTRACE
89fe808a
IM
447 ifeq ($(call try-cc,$(SOURCE_BACKTRACE),,-DHAVE_BACKTRACE_SUPPORT),y)
448 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
8e1b3f68 449 endif
a1c7c9e7 450endif
58a0abd7
JO
451
452ifndef NO_LIBNUMA
3ae069cf 453 ifeq ($(feature-libnuma), 0)
8e1b3f68
JO
454 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numa-libs-devel or libnuma-dev);
455 NO_LIBNUMA := 1
456 else
89fe808a 457 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
8e1b3f68
JO
458 EXTLIBS += -lnuma
459 endif
58a0abd7 460endif
cd1c39f2
JO
461
462# Among the variables below, these:
463# perfexecdir
464# template_dir
465# mandir
466# infodir
467# htmldir
468# ETC_PERFCONFIG (but not sysconfdir)
469# can be specified as a relative path some/where/else;
470# this is interpreted as relative to $(prefix) and "perf" at
471# runtime figures out where they are based on the path to the executable.
472# This can help installing the suite in a relocatable way.
473
474# Make the path relative to DESTDIR, not to prefix
475ifndef DESTDIR
476prefix = $(HOME)
477endif
478bindir_relative = bin
479bindir = $(prefix)/$(bindir_relative)
480mandir = share/man
481infodir = share/info
482perfexecdir = libexec/perf-core
483sharedir = $(prefix)/share
484template_dir = share/perf-core/templates
485htmldir = share/doc/perf-doc
486ifeq ($(prefix),/usr)
487sysconfdir = /etc
488ETC_PERFCONFIG = $(sysconfdir)/perfconfig
489else
490sysconfdir = $(prefix)/etc
491ETC_PERFCONFIG = etc/perfconfig
492endif
493lib = lib
494
495# Shell quote (do not use $(call) to accommodate ancient setups);
496ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
497DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
498bindir_SQ = $(subst ','\'',$(bindir))
499mandir_SQ = $(subst ','\'',$(mandir))
500infodir_SQ = $(subst ','\'',$(infodir))
501perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
502template_dir_SQ = $(subst ','\'',$(template_dir))
503htmldir_SQ = $(subst ','\'',$(htmldir))
504prefix_SQ = $(subst ','\'',$(prefix))
505sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
506
507ifneq ($(filter /%,$(firstword $(perfexecdir))),)
508perfexec_instdir = $(perfexecdir)
509else
510perfexec_instdir = $(prefix)/$(perfexecdir)
511endif
512perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))