Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0
2#
3# Makefile for the x86 low level entry code
4#
5
6OBJECT_FILES_NON_STANDARD_entry_64_compat.o := y
7
8CFLAGS_syscall_64.o += $(call cc-option,-Wno-override-init,)
9CFLAGS_syscall_32.o += $(call cc-option,-Wno-override-init,)
10obj-y := entry_$(BITS).o thunk_$(BITS).o syscall_$(BITS).o
11obj-y += common.o
12
13obj-y += vdso/
14obj-y += vsyscall/
15
16obj-$(CONFIG_IA32_EMULATION) += entry_64_compat.o syscall_32.o
17