diff options
-rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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 |