mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
c554f899b6
The serial UML OS-abstraction layer patch (um/kernel dir). This moves all systemcalls from tty_log.c file under os-Linux dir Signed-off-by: Gennady Sharapov <Gennady.V.Sharapov@intel.com> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
|
|
# Licensed under the GPL
|
|
#
|
|
|
|
extra-y := vmlinux.lds
|
|
clean-files :=
|
|
|
|
obj-y = config.o exec_kern.o exitcode.o \
|
|
init_task.o irq.o ksyms.o mem.o physmem.o \
|
|
process_kern.o ptrace.o reboot.o resource.o sigio_kern.o \
|
|
signal_kern.o smp.o syscall_kern.o sysrq.o \
|
|
time_kern.o tlb.o trap_kern.o uaccess.o um_arch.o umid.o
|
|
|
|
obj-$(CONFIG_BLK_DEV_INITRD) += initrd.o
|
|
obj-$(CONFIG_GPROF) += gprof_syms.o
|
|
obj-$(CONFIG_GCOV) += gmon_syms.o
|
|
obj-$(CONFIG_SYSCALL_DEBUG) += syscall.o
|
|
|
|
obj-$(CONFIG_MODE_TT) += tt/
|
|
obj-$(CONFIG_MODE_SKAS) += skas/
|
|
|
|
USER_OBJS := config.o
|
|
|
|
include arch/um/scripts/Makefile.rules
|
|
|
|
targets := config.c config.tmp
|
|
|
|
# Be careful with the below Sed code - sed is pitfall-rich!
|
|
# We use sed to lower build requirements, for "embedded" builders for instance.
|
|
|
|
$(obj)/config.tmp: $(objtree)/.config FORCE
|
|
$(call if_changed,quote1)
|
|
|
|
quiet_cmd_quote1 = QUOTE $@
|
|
cmd_quote1 = sed -e 's/"/\\"/g' -e 's/^/"/' -e 's/$$/\\n"/' \
|
|
$< > $@
|
|
|
|
$(obj)/config.c: $(src)/config.c.in $(obj)/config.tmp FORCE
|
|
$(call if_changed,quote2)
|
|
|
|
quiet_cmd_quote2 = QUOTE $@
|
|
cmd_quote2 = sed -e '/CONFIG/{' \
|
|
-e 's/"CONFIG"\;/""/' \
|
|
-e 'r $(obj)/config.tmp' \
|
|
-e 'a \' \
|
|
-e '""\;' \
|
|
-e '}' \
|
|
$< > $@
|