Makefile 588 字节
Newer Older
L
Linus Torvalds 已提交
1
obj-y = bitops.o bugs.o checksum.o delay.o fault.o ksyms.o ldt.o ptrace.o \
2 3
	ptrace_user.o semaphore.o signal.o sigcontext.o stub.o stub_segv.o \
	syscalls.o sysrq.o sys_call_table.o
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11

obj-$(CONFIG_HIGHMEM) += highmem.o
obj-$(CONFIG_MODULES) += module.o

USER_OBJS := bugs.o ptrace_user.o sigcontext.o fault.o

SYMLINKS = bitops.c semaphore.c highmem.c module.c

12 13
include arch/um/scripts/Makefile.rules

L
Linus Torvalds 已提交
14 15 16 17 18
bitops.c-dir = lib
semaphore.c-dir = kernel
highmem.c-dir = mm
module.c-dir = kernel

A
Al Viro 已提交
19
$(obj)/stub_segv.o : _c_flags = $(call unprofile,$(CFLAGS))
20

21
include arch/um/scripts/Makefile.unmap