summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2024-05-22 12:01:54 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2024-05-22 12:01:54 -0400
commitd77453f48c9bd1a59938da815004feaf9f147d6a (patch)
tree70c98e8b7c0bdaac1cd544a00aaf54b530ad7e77 /makefile
parenta8a4d0ceff7ea57a7b11236a634cf6d9a6be75bd (diff)
Switched to Native Byte Order from Big Endian
Diffstat (limited to 'makefile')
-rwxr-xr-xmakefile4
1 files changed, 2 insertions, 2 deletions
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: