alcedo/makefile

11 lines
327 B
Makefile
Raw Normal View History

2017-10-20 20:58:06 +01:00
all: kernel
kernel: bootloader
nim cc --cc:clang --clang.linkerexe=ld.lld --gc:none --deadCodeElim:on --cpu:i386 --os:standalone --passC:"-ffreestanding -nostdlib --target=i686-pc-none-elf -march=i686" --passL:"-m elf_i386 boot.o" kernel.nim
bootloader:
nasm -felf32 boot.s -o boot.o
clean:
rm -r kernel nimcache/ boot.o