diff options
Diffstat (limited to 'arch/i386/boot/compressed/Makefile')
-rw-r--r-- | arch/i386/boot/compressed/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/arch/i386/boot/compressed/Makefile b/arch/i386/boot/compressed/Makefile new file mode 100644 index 000000000000..258ea95224f6 --- /dev/null +++ b/arch/i386/boot/compressed/Makefile | |||
@@ -0,0 +1,25 @@ | |||
1 | # | ||
2 | # linux/arch/i386/boot/compressed/Makefile | ||
3 | # | ||
4 | # create a compressed vmlinux image from the original vmlinux | ||
5 | # | ||
6 | |||
7 | targets := vmlinux vmlinux.bin vmlinux.bin.gz head.o misc.o piggy.o | ||
8 | EXTRA_AFLAGS := -traditional | ||
9 | |||
10 | LDFLAGS_vmlinux := -Ttext $(IMAGE_OFFSET) -e startup_32 | ||
11 | |||
12 | $(obj)/vmlinux: $(obj)/head.o $(obj)/misc.o $(obj)/piggy.o FORCE | ||
13 | $(call if_changed,ld) | ||
14 | @: | ||
15 | |||
16 | $(obj)/vmlinux.bin: vmlinux FORCE | ||
17 | $(call if_changed,objcopy) | ||
18 | |||
19 | $(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE | ||
20 | $(call if_changed,gzip) | ||
21 | |||
22 | LDFLAGS_piggy.o := -r --format binary --oformat elf32-i386 -T | ||
23 | |||
24 | $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.gz FORCE | ||
25 | $(call if_changed,ld) | ||