blob: 7a144971db7905689a825d4fa58aea2cb7c246b3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#
# Makefile for the x86 low level entry code
#
obj-y := entry_$(BITS).o thunk_$(BITS).o syscall_$(BITS).o
obj-y += vdso/
obj-y += vsyscall/
obj-$(CONFIG_IA32_EMULATION) += entry_64_compat.o syscall_32.o
|