diff options
Diffstat (limited to 'kernel/arch/x86/entry/Makefile')
-rw-r--r-- | kernel/arch/x86/entry/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/kernel/arch/x86/entry/Makefile b/kernel/arch/x86/entry/Makefile new file mode 100644 index 000000000..bd55dedd7 --- /dev/null +++ b/kernel/arch/x86/entry/Makefile @@ -0,0 +1,11 @@ +# +# Makefile for the x86 low level entry code +# +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 + |