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