776cfebb43
- Fix some problems with usage of $(targets) (sometimes missing, sometimes used badly) that trigger partial rebuilds when doing a rebuild. - At that purpose, also factor out some common code for symlinks creation. - Fix a x86-64 build warning, caused by -L/usr/lib, which is anyway useless, and invalid in the x86-64 case. Tested on x86_64 and x86. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
20 lines
485 B
Makefile
20 lines
485 B
Makefile
obj-y = bitops.o bugs.o checksum.o delay.o fault.o ksyms.o ldt.o ptrace.o \
|
|
ptrace_user.o semaphore.o signal.o sigcontext.o syscalls.o sysrq.o \
|
|
sys_call_table.o
|
|
|
|
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
|
|
|
|
bitops.c-dir = lib
|
|
semaphore.c-dir = kernel
|
|
highmem.c-dir = mm
|
|
module.c-dir = kernel
|
|
|
|
subdir- := util
|
|
|
|
include arch/um/scripts/Makefile.rules
|