From c423f90dde0e8f43b2ec7df45e9840d041186edf Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Sun, 12 May 2024 22:19:03 -0400 Subject: Fixed loading binary into emulated memory --- makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'makefile') diff --git a/makefile b/makefile index d8e53c5..843c699 100755 --- a/makefile +++ b/makefile @@ -1,6 +1,7 @@ CC=gcc CFLAGS=-Wall -Werror -pedantic --std=c17 OBJS=qdme.o +SRCS=qdme.c TARGET=qdme %.o: %.c %.h @@ -8,6 +9,9 @@ TARGET=qdme all: $(TARGET) +debug: $(SRCS) + $(CC) $(CFLAGS) -g -o $(TARGET) $^ + mips: $(OBJS) $(CC) $(CFLAGS) -o $@ $^ -- cgit v1.2.3