Makefile (07e88e1bfc128681a80578724fde6a872f413862) | Makefile (59f002964f4e6668a0132cd796b82f7f8a4803f0) |
---|---|
1# 2# linux/arch/sh/boot/compressed/Makefile 3# 4# create a compressed vmlinux image from the original vmlinux 5# 6 7targets := vmlinux vmlinux.bin vmlinux.bin.gz \ 8 vmlinux.bin.bz2 vmlinux.bin.lzma \ | 1# 2# linux/arch/sh/boot/compressed/Makefile 3# 4# create a compressed vmlinux image from the original vmlinux 5# 6 7targets := vmlinux vmlinux.bin vmlinux.bin.gz \ 8 vmlinux.bin.bz2 vmlinux.bin.lzma \ |
9 head_$(BITS).o misc_$(BITS).o piggy.o | 9 head_$(BITS).o misc.o piggy.o |
10 | 10 |
11OBJECTS = $(obj)/head_$(BITS).o $(obj)/misc_$(BITS).o $(obj)/cache.o | 11OBJECTS = $(obj)/head_$(BITS).o $(obj)/misc.o $(obj)/cache.o |
12 13ifdef CONFIG_SH_STANDARD_BIOS 14OBJECTS += $(obj)/../../kernel/sh_bios.o 15endif 16 17# 18# IMAGE_OFFSET is the load offset of the compression loader 19# --- 41 unchanged lines hidden --- | 12 13ifdef CONFIG_SH_STANDARD_BIOS 14OBJECTS += $(obj)/../../kernel/sh_bios.o 15endif 16 17# 18# IMAGE_OFFSET is the load offset of the compression loader 19# --- 41 unchanged lines hidden --- |