Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 627 → Rev 628

/kernel/trunk/arch/ia32/boot/Makefile
1,17 → 1,8
.PHONY: build clean
 
build: boot.bin
dd if=boot.bin of=../../../image.bin bs=512 conv=sync
-cat ../../../kernel.bin >> ../../../image.bin
dd if=/dev/zero of=../../../image.bin bs=1 seek=1474559 count=1
build: grub.img.gz
gunzip -c grub.img.gz > ../../../image.bin
e2cp ../../../kernel.bin ../../../image.bin:/boot/kernel.bin
 
boot.bin: boot.o
$(LD) -T boot.ld -entry _start_0x7c00 --oformat binary boot.o -o $@
 
boot.o: boot.S
$(CC) -E -DKERNEL_SIZE=$(KERNEL_SIZE) boot.S > boot.s
$(AS) boot.s -o $@
rm boot.s
 
clean:
-rm -f boot.o boot.bin ../../../image.bin
-rm -f ../../../image.bin