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