GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / mn10300 / boot / compressed / Makefile
blob08a95e171685979eae6cbb5bfef89d7043e57f17
2 # Create a compressed vmlinux image from the original vmlinux
5 targets := vmlinux vmlinux.bin vmlinux.bin.gz head.o misc.o piggy.o
7 LDFLAGS_vmlinux := -Ttext $(CONFIG_KERNEL_ZIMAGE_BASE_ADDRESS) -e startup_32
9 $(obj)/vmlinux: $(obj)/head.o $(obj)/misc.o $(obj)/piggy.o FORCE
10 $(call if_changed,ld)
13 $(obj)/vmlinux.bin: vmlinux FORCE
14 $(call if_changed,objcopy)
16 $(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE
17 $(call if_changed,gzip)
19 LDFLAGS_piggy.o := -r --format binary --oformat elf32-am33lin -T
21 $(obj)/piggy.o: $(obj)/vmlinux.lds $(obj)/vmlinux.bin.gz FORCE
22 $(call if_changed,ld)