build: compilation du system.sys au format PE

This commit is contained in:
Nicolas Hordé 2007-04-02 14:21:18 +00:00
parent 57d7f287d0
commit 7fcda8d524
1 changed files with 4 additions and 8 deletions

View File

@ -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