cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

Makefile (686B)


      1# SPDX-License-Identifier: GPL-2.0-only
      2ifndef NO_DWARF
      3PERF_HAVE_DWARF_REGS := 1
      4endif
      5HAVE_KVM_STAT_SUPPORT := 1
      6PERF_HAVE_ARCH_REGS_QUERY_REGISTER_OFFSET := 1
      7PERF_HAVE_JITDUMP := 1
      8
      9#
     10# Syscall table generation for perf
     11#
     12
     13out    := $(OUTPUT)arch/s390/include/generated/asm
     14header := $(out)/syscalls_64.c
     15sysprf := $(srctree)/tools/perf/arch/s390/entry/syscalls
     16sysdef := $(sysprf)/syscall.tbl
     17systbl := $(sysprf)/mksyscalltbl
     18
     19# Create output directory if not already present
     20_dummy := $(shell [ -d '$(out)' ] || mkdir -p '$(out)')
     21
     22$(header): $(sysdef) $(systbl)
     23	$(Q)$(SHELL) '$(systbl)' $(sysdef) > $@
     24
     25clean::
     26	$(call QUIET_CLEAN, s390) $(RM) $(header)
     27
     28archheaders: $(header)