23 lines
467 B
Makefile
23 lines
467 B
Makefile
|
# SPDX-License-Identifier: GPL-2.0
|
||
|
#
|
||
|
# Makefile for the x86 low level entry code
|
||
|
#
|
||
|
|
||
|
KASAN_SANITIZE := n
|
||
|
UBSAN_SANITIZE := n
|
||
|
KCOV_INSTRUMENT := n
|
||
|
|
||
|
CFLAGS_REMOVE_common.o = $(CC_FLAGS_FTRACE)
|
||
|
|
||
|
CFLAGS_common.o += -fno-stack-protector
|
||
|
|
||
|
obj-y := entry_$(BITS).o thunk_$(BITS).o syscall_$(BITS).o
|
||
|
obj-y += common.o
|
||
|
|
||
|
obj-y += vdso/
|
||
|
obj-y += vsyscall/
|
||
|
|
||
|
obj-$(CONFIG_IA32_EMULATION) += entry_64_compat.o syscall_32.o
|
||
|
obj-$(CONFIG_X86_X32_ABI) += syscall_x32.o
|
||
|
|