summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2018-10-03 17:55:16 -0500
committerMarcus Huderle <huderlem@gmail.com>2018-10-03 18:00:08 -0500
commit09b8f4c09e69a2359cdf5e4497b97aca3746b8b1 (patch)
tree2a5f838839c6c962830d6e34c1399918cecc4a0c /tools
parentf2f28382c4ad2b283d485f70b28d14317d58c997 (diff)
Fix build
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)