mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
fc47a0d18a
user_time_init_skas and user_time_init_tt were essentially the same. So, this merges them, deleting the mode-specific functions and declarations. Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Paolo Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
15 lines
371 B
Makefile
15 lines
371 B
Makefile
#
|
|
# Copyright (C) 2002 - 2003 Jeff Dike (jdike@addtoit.com)
|
|
# Licensed under the GPL
|
|
#
|
|
|
|
obj-y = exec_kern.o exec_user.o gdb.o ksyms.o mem.o mem_user.o process_kern.o \
|
|
syscall_kern.o syscall_user.o tlb.o tracer.o trap_user.o \
|
|
uaccess.o uaccess_user.o
|
|
|
|
obj-$(CONFIG_PT_PROXY) += gdb_kern.o ptproxy/
|
|
|
|
USER_OBJS := gdb.o tracer.o
|
|
|
|
include arch/um/scripts/Makefile.rules
|