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