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