summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
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: