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