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