Makefile 391 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
#
# Makefile for the ia32 kernel emulation subsystem.
#

R
Roland McGrath 已提交
5
obj-$(CONFIG_IA32_EMULATION) := ia32entry.o sys_ia32.o ia32_signal.o
6
obj-$(CONFIG_IA32_EMULATION) += nosyscall.o syscall_ia32.o
L
Linus Torvalds 已提交
7 8 9 10 11 12

sysv-$(CONFIG_SYSVIPC) := ipc32.o
obj-$(CONFIG_IA32_EMULATION) += $(sysv-y)

obj-$(CONFIG_IA32_AOUT) += ia32_aout.o

A
Al Viro 已提交
13 14
audit-class-$(CONFIG_AUDIT) := audit.o
obj-$(CONFIG_IA32_EMULATION) += $(audit-class-y)