GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / x86 / boot / compressed / Makefile
blob0c229551eead15adb41e5636aa7fce7233ebc555
2 # linux/arch/x86/boot/compressed/Makefile
4 # create a compressed vmlinux image from the original vmlinux
7 targets := vmlinux.lds vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma vmlinux.bin.lzo head_$(BITS).o misc.o string.o cmdline.o early_serial_console.o piggy.o
9 KBUILD_CFLAGS := -m$(BITS) -D__KERNEL__ $(LINUX_INCLUDE) -O2
10 KBUILD_CFLAGS += -fno-strict-aliasing -fPIC
11 KBUILD_CFLAGS += -DDISABLE_BRANCH_PROFILING
12 cflags-$(CONFIG_X86_32) := -march=i386
13 cflags-$(CONFIG_X86_64) := -mcmodel=small
14 KBUILD_CFLAGS += $(cflags-y)
15 KBUILD_CFLAGS += $(call cc-option,-ffreestanding)
16 KBUILD_CFLAGS += $(call cc-option,-fno-stack-protector)
18 KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__
19 GCOV_PROFILE := n
21 LDFLAGS := -m elf_$(UTS_MACHINE)
22 LDFLAGS_vmlinux := -T
24 hostprogs-y := mkpiggy
26 $(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/head_$(BITS).o $(obj)/misc.o $(obj)/string.o $(obj)/cmdline.o $(obj)/early_serial_console.o $(obj)/piggy.o FORCE
27 $(call if_changed,ld)
30 OBJCOPYFLAGS_vmlinux.bin := -R .comment -S
31 $(obj)/vmlinux.bin: vmlinux FORCE
32 $(call if_changed,objcopy)
35 targets += vmlinux.bin.all vmlinux.relocs relocs
36 hostprogs-$(CONFIG_X86_NEED_RELOCS) += relocs
38 quiet_cmd_relocs = RELOCS $@
39 cmd_relocs = $(obj)/relocs $< > $@;$(obj)/relocs --abs-relocs $<
40 $(obj)/vmlinux.relocs: vmlinux $(obj)/relocs FORCE
41 $(call if_changed,relocs)
43 vmlinux.bin.all-y := $(obj)/vmlinux.bin
44 vmlinux.bin.all-$(CONFIG_X86_NEED_RELOCS) += $(obj)/vmlinux.relocs
46 $(obj)/vmlinux.bin.gz: $(vmlinux.bin.all-y) FORCE
47 $(call if_changed,gzip)
48 $(obj)/vmlinux.bin.bz2: $(vmlinux.bin.all-y) FORCE
49 $(call if_changed,bzip2)
50 $(obj)/vmlinux.bin.lzma: $(vmlinux.bin.all-y) FORCE
51 $(call if_changed,lzma)
52 $(obj)/vmlinux.bin.lzo: $(vmlinux.bin.all-y) FORCE
53 $(call if_changed,lzo)
55 suffix-$(CONFIG_KERNEL_GZIP) := gz
56 suffix-$(CONFIG_KERNEL_BZIP2) := bz2
57 suffix-$(CONFIG_KERNEL_LZMA) := lzma
58 suffix-$(CONFIG_KERNEL_LZO) := lzo
60 quiet_cmd_mkpiggy = MKPIGGY $@
61 cmd_mkpiggy = $(obj)/mkpiggy $< > $@ || ( rm -f $@ ; false )
63 targets += piggy.S
64 $(obj)/piggy.S: $(obj)/vmlinux.bin.$(suffix-y) $(obj)/mkpiggy FORCE
65 $(call if_changed,mkpiggy)