File: Makefile

package info (click to toggle)
linux 6.12.73-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,675,820 kB
  • sloc: ansic: 25,915,858; asm: 269,648; sh: 136,658; python: 65,456; makefile: 55,721; perl: 37,753; xml: 19,284; cpp: 5,895; yacc: 4,927; lex: 2,939; awk: 1,594; sed: 28; ruby: 25
file content (32 lines) | stat: -rw-r--r-- 867 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# SPDX-License-Identifier: GPL-2.0
ifndef NO_DWARF
PERF_HAVE_DWARF_REGS := 1
endif
HAVE_KVM_STAT_SUPPORT := 1
PERF_HAVE_ARCH_REGS_QUERY_REGISTER_OFFSET := 1
PERF_HAVE_JITDUMP := 1

###
# Syscall table generation
#

generated := $(OUTPUT)arch/x86/include/generated
out       := $(generated)/asm
header    := $(out)/syscalls_64.c
header_32 := $(out)/syscalls_32.c
sys       := $(srctree)/tools/perf/arch/x86/entry/syscalls
systbl    := $(sys)/syscalltbl.sh

# Create output directory if not already present
$(shell [ -d '$(out)' ] || mkdir -p '$(out)')

$(header): $(sys)/syscall_64.tbl $(systbl)
	$(Q)$(SHELL) '$(systbl)' $(sys)/syscall_64.tbl 'x86_64' > $@

$(header_32): $(sys)/syscall_32.tbl $(systbl)
	$(Q)$(SHELL) '$(systbl)' $(sys)/syscall_32.tbl 'x86' > $@

clean::
	$(call QUIET_CLEAN, x86) $(RM) -r $(header) $(generated)

archheaders: $(header) $(header_32)