13 lines
164 B
Makefile
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
|