tabs/Makefile

16 lines
646 B
Makefile
Raw Normal View History

2020-01-02 11:19:32 +00:00
run_bootloader: compile_bootloader
qemu-system-i386 -drive format=raw,file=target/boot.bin -monitor stdio
2019-12-28 12:47:10 +00:00
run_kernel: compile_kernel
qemu-system-i386 -kernel target/kernel.bin
2019-12-28 16:25:29 +00:00
compile_bootloader: compile_kernel
2019-12-30 15:02:43 +00:00
rm -rf target/bootloader.bin
nasm -f bin -o target/bootloader.bin bootloader/main.asm
cat target/bootloader.bin target/kernel.bin > target/boot.bin
2020-01-02 11:19:32 +00:00
compile_kernel:
nasm -felf32 kernel/boot.asm -o target/boot.o
i686-elf-gcc -c kernel/kernel.c -o target/kernel.o -std=gnu99 -ffreestanding -O2 -Wall -Wextra
i686-elf-gcc -T kernel/linker.ld -o target/kernel.bin -ffreestanding -O2 -nostdlib target/boot.o target/kernel.o -lgcc