17 lines
192 B
Makefile
17 lines
192 B
Makefile
|
|
KERNEL = hos
|
|
LDFLAGS = -T link.ld
|
|
|
|
.PHONY: clean
|
|
|
|
all: $(KERNEL)
|
|
|
|
$(KERNEL): boot.o
|
|
ld $(LDFLAGS) -o $@ $<
|
|
|
|
boot.o: boot.asm
|
|
nasm -f elf -o boot.o boot.asm
|
|
|
|
clean:
|
|
-rm -f *~ $(KERNEL) *.o
|