Merge branch 'core-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.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
51b563fc
SR
6CPPFLAGS_vmlinux.lds := -U$(SUBARCH) -DSTART=$(LDS_START) \
7 -DELF_ARCH=$(LDS_ELF_ARCH) \
8 -DELF_FORMAT=$(LDS_ELF_FORMAT)
1da177e4 9extra-y := vmlinux.lds
03f81dc5 10clean-files :=
1da177e4 11
1d3468a6 12obj-y = config.o exec.o exitcode.o init_task.o irq.o ksyms.o mem.o \
b42e1eac 13 physmem.o process.o ptrace.o reboot.o sigio.o \
1d3468a6 14 signal.o smp.o syscall.o sysrq.o time.o tlb.o trap.o uaccess.o \
42fda663 15 um_arch.o umid.o skas/
1da177e4 16
9b67a3c4 17obj-$(CONFIG_BLK_DEV_INITRD) += initrd.o
1da177e4
LT
18obj-$(CONFIG_GPROF) += gprof_syms.o
19obj-$(CONFIG_GCOV) += gmon_syms.o
1da177e4 20
c554f899 21USER_OBJS := config.o
1da177e4
LT
22
23include arch/um/scripts/Makefile.rules
24
776cfebb 25targets := config.c config.tmp
1da177e4
LT
26
27# Be careful with the below Sed code - sed is pitfall-rich!
28# We use sed to lower build requirements, for "embedded" builders for instance.
29
30$(obj)/config.tmp: $(objtree)/.config FORCE
31 $(call if_changed,quote1)
32
33quiet_cmd_quote1 = QUOTE $@
dc717687 34 cmd_quote1 = sed -e 's/"/\\"/g' -e 's/^/"/' -e 's/$$/\\n",/' \
1da177e4
LT
35 $< > $@
36
37$(obj)/config.c: $(src)/config.c.in $(obj)/config.tmp FORCE
38 $(call if_changed,quote2)
39
40quiet_cmd_quote2 = QUOTE $@
41 cmd_quote2 = sed -e '/CONFIG/{' \
dc717687 42 -e 's/"CONFIG"//' \
1da177e4 43 -e 'r $(obj)/config.tmp' \
b05d85a8 44 -e 'a \' \
dc717687 45 -e '""' \
1da177e4
LT
46 -e '}' \
47 $< > $@