From d77453f48c9bd1a59938da815004feaf9f147d6a Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Wed, 22 May 2024 12:01:54 -0400 Subject: Switched to Native Byte Order from Big Endian --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index b021616..389b5c5 100755 --- a/makefile +++ b/makefile @@ -5,14 +5,14 @@ SRCS=qdme.c TARGET=qdme %.o: %.c %.h - $(CC) $(CFLAGS) -c $@ $< + $(CC) $(CFLAGS) -c $< all: $(TARGET) debug: $(SRCS) $(CC) $(CFLAGS) -g -o $(TARGET) $^ -mips: $(OBJS) +qdme: $(OBJS) $(CC) $(CFLAGS) -o $@ $^ clean: -- cgit v1.2.3