build: compilation du system.sys au format PE
This commit is contained in:
parent
57d7f287d0
commit
7fcda8d524
|
@ -1,20 +1,16 @@
|
|||
FREEC=gcc -O2 -nostdinc -ffreestanding -fno-builtin -fomit-frame-pointer -Wall -I ../Include -c -o
|
||||
CC=gcc -O1 -nostdinc -ffreestanding -fno-builtin -fomit-frame-pointer -Wall -I ../Include -c -o
|
||||
|
||||
|
||||
LINK=ld -Ttext 0x100000 -e __main -o
|
||||
LINK=ld -e __main -o
|
||||
|
||||
all: system.sys
|
||||
sync
|
||||
|
||||
system.sys:
|
||||
nasm -f bin -o loader.bin loader.asm
|
||||
nasm -f elf -o system.o system.asm
|
||||
|
||||
$(FREEC) systemc.o system.c
|
||||
$(LINK) system.out systemc.o system.o ../lib/libs.o
|
||||
objcopy -O binary system.out system.bin
|
||||
cat loader.bin>system.sys
|
||||
cat system.bin>>system.sys
|
||||
$(CC) systemc.o system.c
|
||||
$(LINK) system.sys systemc.o system.o ../lib/libs.o
|
||||
|
||||
clean:
|
||||
rm -f *.o
|
||||
|
|
Loading…
Reference in New Issue