diff --git a/Makefile b/Makefile index 7ceec06..d4ef028 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,7 @@ KERNEL_FILE := hos.gz MKISOFS := genisoimage ISO := hos.iso QEMU := qemu-system-x86_64 +BOCHS := bochs # default target: build the kernel and ISO image all: kernel iso @@ -26,6 +27,10 @@ $(ISO): kernel qemu: iso $(QEMU) -cdrom $(ISO) -boot d -m 384 -localtime +.PHONY: bochs +bochs: iso + -$(BOCHS) + .PHONY: clean clean: $(MAKE) -C kernel clean