From d337fa5137d508115f1eab06683688daee2ac7cd Mon Sep 17 00:00:00 2001 From: Ian McFarlane Date: Thu, 10 Apr 2025 14:34:35 -0400 Subject: add nox targets to makefile --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6c79b88..8f37abc 100644 --- a/Makefile +++ b/Makefile @@ -13,10 +13,16 @@ QEMUOPTS = -cdrom bin/os.iso \ -name kern qemu: bin/os.iso - $(QEMU) $(QEMUOPTS) + $(QEMU) $(QEMUOPTS) + +qemu-nox: bin/os.iso + $(QEMU) &(QEMUOPTS) -nographic qemu-gdb: bin/os.iso - $(QEMU) $(QEMUOPTS) -S -gdb tcp::1337 + $(QEMU) $(QEMUOPTS) -S -gdb tcp::1337 + +qemu-gdb-nox: bin/os.iso + $(QEMU) $(QEMUOPTS) -nographic -S -gdb tcp::1337 gdb: gdb -q -n -x config/gdbinit -- cgit v1.2.3-freya