summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 3ccecb1..66da24e 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,6 @@ OBJ = $(SRC:.c=.o)
all: $(NAME)
$(NAME): $(OBJ) $(LDSCRIPT)
- # TODO
$(CC) -o $@ $^ $(LDFLAGS)
clean:
@@ -29,10 +28,10 @@ distclean: mrproper
$(RM) $(wildcard $(addsuffix .sw*,$(addprefix .,$(SRC))))
boot: all
- $(shell qemu-system-x86_64 -kernel $(NAME) -nographic)
+ qemu-system-i386 -kernel $(NAME)
debug: all
- $(shell qemu-system-x86_64 -kernel $(NAME) -s -S)
+ qemu-system-i386 -kernel $(NAME) -s -S
.PHONY: all clean mrproper distclean boot