Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6
[deliverable/linux.git] / arch / um / kernel / Makefile
CommitLineData
114069f7 1#
4c9e1385 2# Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux,intel}.com)
1da177e4
LT
3# Licensed under the GPL
4#
5
6extra-y := vmlinux.lds
03f81dc5 7clean-files :=
1da177e4 8
1d3468a6 9obj-y = config.o exec.o exitcode.o init_task.o irq.o ksyms.o mem.o \
b42e1eac 10 physmem.o process.o ptrace.o reboot.o sigio.o \
1d3468a6 11 signal.o smp.o syscall.o sysrq.o time.o tlb.o trap.o uaccess.o \
42fda663 12 um_arch.o umid.o skas/
1da177e4 13
9b67a3c4 14obj-$(CONFIG_BLK_DEV_INITRD) += initrd.o
1da177e4
LT
15obj-$(CONFIG_GPROF) += gprof_syms.o
16obj-$(CONFIG_GCOV) += gmon_syms.o
1da177e4 17
c554f899 18USER_OBJS := config.o
1da177e4
LT
19
20include arch/um/scripts/Makefile.rules
21
776cfebb 22targets := config.c config.tmp
1da177e4
LT
23
24# Be careful with the below Sed code - sed is pitfall-rich!
25# We use sed to lower build requirements, for "embedded" builders for instance.
26
27$(obj)/config.tmp: $(objtree)/.config FORCE
28 $(call if_changed,quote1)
29
30quiet_cmd_quote1 = QUOTE $@
dc717687 31 cmd_quote1 = sed -e 's/"/\\"/g' -e 's/^/"/' -e 's/$$/\\n",/' \
1da177e4
LT
32 $< > $@
33
34$(obj)/config.c: $(src)/config.c.in $(obj)/config.tmp FORCE
35 $(call if_changed,quote2)
36
37quiet_cmd_quote2 = QUOTE $@
38 cmd_quote2 = sed -e '/CONFIG/{' \
dc717687 39 -e 's/"CONFIG"//' \
1da177e4 40 -e 'r $(obj)/config.tmp' \
b05d85a8 41 -e 'a \' \
dc717687 42 -e '""' \
1da177e4
LT
43 -e '}' \
44 $< > $@
This page took 0.469575 seconds and 5 git commands to generate.