2015-06-03 19:37:36 +08:00
|
|
|
#
|
|
|
|
# Makefile for the x86 low level entry code
|
|
|
|
#
|
2016-02-29 12:22:34 +08:00
|
|
|
|
|
|
|
OBJECT_FILES_NON_STANDARD_entry_$(BITS).o := y
|
|
|
|
OBJECT_FILES_NON_STANDARD_entry_64_compat.o := y
|
|
|
|
|
2015-06-04 00:41:06 +08:00
|
|
|
obj-y := entry_$(BITS).o thunk_$(BITS).o syscall_$(BITS).o
|
2015-07-04 03:44:23 +08:00
|
|
|
obj-y += common.o
|
2015-06-04 00:41:06 +08:00
|
|
|
|
2015-06-04 00:05:44 +08:00
|
|
|
obj-y += vdso/
|
2015-06-04 00:41:06 +08:00
|
|
|
obj-y += vsyscall/
|
2015-06-04 00:05:44 +08:00
|
|
|
|
2015-06-05 20:11:49 +08:00
|
|
|
obj-$(CONFIG_IA32_EMULATION) += entry_64_compat.o syscall_32.o
|
2015-06-04 00:00:59 +08:00
|
|
|
|