995473aec0
Move some foo_kern.c files to foo.c now that the old foo.c files are out of the way. Also cleaned up some whitespace and an emacs formatting comment. Signed-off-by: Jeff Dike <jdike@addtoit.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
16 lines
421 B
Makefile
16 lines
421 B
Makefile
#
|
|
# Copyright (C) 2002 - 2004 Jeff Dike (jdike@addtoit.com)
|
|
# Licensed under the GPL
|
|
#
|
|
|
|
obj-y := clone.o exec.o mem.o mmu.o process.o syscall.o tlb.o uaccess.o
|
|
|
|
# clone.o is in the stub, so it can't be built with profiling
|
|
# GCC hardened also auto-enables -fpic, but we need %ebx so it can't work ->
|
|
# disable it
|
|
|
|
CFLAGS_clone.o := $(CFLAGS_NO_HARDENING)
|
|
UNPROFILE_OBJS := clone.o
|
|
|
|
include arch/um/scripts/Makefile.rules
|