diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2015-10-29 14:24:23 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2015-10-29 14:24:23 +0100 |
commit | e7edce9f232e1359097793b2610e04b16dab7f7e (patch) | |
tree | b41bcb50b2e771476cc75696a215c5944cccd7a4 | |
parent | bc1d737e80aeb09577ec936509da7241e245b173 (diff) |
kfs: use a Makefile variable to control the graphics display
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |