summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Gayot <duskcoder@gmail.com>2015-10-29 14:24:23 +0100
committerOlivier Gayot <duskcoder@gmail.com>2015-10-29 14:24:23 +0100
commite7edce9f232e1359097793b2610e04b16dab7f7e (patch)
treeb41bcb50b2e771476cc75696a215c5944cccd7a4
parentbc1d737e80aeb09577ec936509da7241e245b173 (diff)
kfs: use a Makefile variable to control the graphics display
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6cf0bc5..90ffa6c 100644
--- a/Makefile
+++ b/Makefile
@@ -30,10 +30,10 @@ distclean: mrproper
$(RM) $(wildcard $(addsuffix .sw*,$(addprefix .,$(SRC))))
boot: all
- $(QEMU) -kernel $(NAME)
+ $(QEMU) -kernel $(NAME) $(QEMUFLAGS)
debug: all
- $(QEMU) -kernel $(NAME) -s -S
+ $(QEMU) -kernel $(NAME) -s -S $(QEMUFLAGS)
.PHONY: all clean mrproper distclean boot