all: kernel
kernel: bootloader
nim cc kernel.nim
bootloader:
nasm -felf32 boot.s -o boot.o
clean:
rm -r kernel nimcache/ boot.o