From cdea1602d502f27149798ea6ea7fcea4221eae4e Mon Sep 17 00:00:00 2001 From: josh Date: Fri, 22 Jan 2010 18:19:17 +0000 Subject: [PATCH] added bochs target to Makefile git-svn-id: svn://anubis/hos/trunk@86 5b3e749e-e535-0410-8002-a9bb6afbdfca --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) 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