summaryrefslogtreecommitdiff
path: root/tools/gbafix
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gbafix')
-rw-r--r--tools/gbafix/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/gbafix/Makefile b/tools/gbafix/Makefile
index f12c8cc4f..5b410da08 100644
--- a/tools/gbafix/Makefile
+++ b/tools/gbafix/Makefile
@@ -1,8 +1,11 @@
CC = gcc
-.PHONY: clean
+.PHONY: all clean
SRCS = gbafix.c
+all: gbafix
+ @:
+
gbafix: $(SRCS)
$(CC) $(SRCS) -o $@ $(LDFLAGS)