source: mainline/arch/ia32/boot/Makefile@ 23c0c08

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 23c0c08 was f761f1eb, checked in by Jakub Jermar <jakub@…>, 21 years ago

Initial import

  • Property mode set to 100644
File size: 372 bytes
Line 
1.PHONY: nothing build clean
2
3nothing:
4
5build: boot.bin
6 dd if=boot.bin of=../../../src/image.bin bs=512 conv=sync
7 -cat ../../../src/kernel.bin >>../../../src/image.bin
8
9boot.bin: boot.o
10 ld -T boot.ld -entry _start_0x7c00 --oformat binary boot.o -o $@
11
12boot.o: boot.S
13 gcc -E -DKERNEL_SIZE=$(KERNEL_SIZE) boot.S >boot.s
14 as boot.s -o $@
15 rm boot.s
16
17clean:
18 -rm *.o *.bin
Note: See TracBrowser for help on using the repository browser.