build: mise a jour de la compilation pour qu'elle inclue le loader

This commit is contained in:
Nicolas Hordé 2007-04-02 13:54:09 +00:00
parent c301aa8bfc
commit fcfddd59f8
1 changed files with 17 additions and 12 deletions

View File

@ -1,20 +1,25 @@
CC=nasm -f bin -o
BINS=boot12.bin boot16.bin boottest.bin bootcp.com loader.sys
all: makall
makall: boot12.bin boot16.bin boottest.bin bootcp.com
sync
makall:$(BINS)
boot12.bin:
nasm -f bin -o boot12.bin boot12.asm
boot16.bin:
nasm -f bin -o boot16.bin boot16.asm
boot12.bin: boot12.asm
$(CC) $@ $^
boottest.bin:
nasm -f bin -o boottest.bin boottest.asm
boot16.bin: boot16.asm
$(CC) $@ $^
boottest.bin: boottest.asm
$(CC) $@ $^
bootcp.com: bootcp.asm
$(CC) $@ $^
loader.sys: loader.asm
$(CC) $@ $^
bootcp.com:
nasm -f bin -o bootcp.com bootcp.asm
clean:
rm -f *.o
rm -f *.bin