build: mise a jour de la compilation pour qu'elle inclue le loader
This commit is contained in:
parent
c301aa8bfc
commit
fcfddd59f8
|
@ -1,20 +1,25 @@
|
||||||
|
CC=nasm -f bin -o
|
||||||
|
BINS=boot12.bin boot16.bin boottest.bin bootcp.com loader.sys
|
||||||
|
|
||||||
all: makall
|
all: makall
|
||||||
|
|
||||||
makall: boot12.bin boot16.bin boottest.bin bootcp.com
|
makall:$(BINS)
|
||||||
sync
|
|
||||||
|
|
||||||
boot12.bin:
|
boot12.bin: boot12.asm
|
||||||
nasm -f bin -o boot12.bin boot12.asm
|
$(CC) $@ $^
|
||||||
|
|
||||||
boot16.bin:
|
|
||||||
nasm -f bin -o boot16.bin boot16.asm
|
|
||||||
|
|
||||||
boottest.bin:
|
boot16.bin: boot16.asm
|
||||||
nasm -f bin -o boottest.bin boottest.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:
|
clean:
|
||||||
rm -f *.o
|
rm -f *.o
|
||||||
rm -f *.bin
|
rm -f *.bin
|
||||||
|
|
Loading…
Reference in New Issue