alcedo/makefile

11 lines
134 B
Makefile
Raw Normal View History

2017-10-20 20:58:06 +01:00
all: kernel
kernel: bootloader
nim cc kernel.nim
2017-10-20 20:58:06 +01:00
bootloader:
nasm -felf32 boot.s -o boot.o
clean:
rm -r kernel nimcache/ boot.o