summaryrefslogtreecommitdiff
path: root/tools/gbafix/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gbafix/Makefile')
-rw-r--r--tools/gbafix/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/gbafix/Makefile b/tools/gbafix/Makefile
new file mode 100644
index 000000000..f12c8cc4f
--- /dev/null
+++ b/tools/gbafix/Makefile
@@ -0,0 +1,10 @@
+CC = gcc
+.PHONY: clean
+
+SRCS = gbafix.c
+
+gbafix: $(SRCS)
+ $(CC) $(SRCS) -o $@ $(LDFLAGS)
+
+clean:
+ $(RM) gbafix gbafix.exe