hos/kernel/Makefile
josh 8f00324b30 bootable with small multiboot kernel
git-svn-id: svn://anubis/hos/trunk@5 5b3e749e-e535-0410-8002-a9bb6afbdfca
2007-07-25 03:00:58 +00:00

13 lines
164 B
Makefile

KERNEL = hos
TARGET = elf32-i386
.PHONY: clean
all:
nasm -f elf -o boot.o boot.asm
ld --oformat $(TARGET) -o $(KERNEL) boot.o
clean:
-rm -f *~ $(KERNEL) *.o