summaryrefslogtreecommitdiff
path: root/tools/gbafix/Makefile
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@gmail.com>2019-07-29 09:01:55 -0400
committerPikalaxALT <PikalaxALT@gmail.com>2019-07-29 09:01:55 -0400
commit3e27227b83c2c602237f016f04f2c5fa1e31de87 (patch)
tree4bce050a1fc6c364f937c33dcf58daf283a241d1 /tools/gbafix/Makefile
parent7d02658bfce6a57a5f845f44cbda412b9777113a (diff)
Add sources and compilation guide
Diffstat (limited to 'tools/gbafix/Makefile')
-rw-r--r--tools/gbafix/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/gbafix/Makefile b/tools/gbafix/Makefile
new file mode 100644
index 0000000..5b410da
--- /dev/null
+++ b/tools/gbafix/Makefile
@@ -0,0 +1,13 @@
+CC = gcc
+.PHONY: all clean
+
+SRCS = gbafix.c
+
+all: gbafix
+ @:
+
+gbafix: $(SRCS)
+ $(CC) $(SRCS) -o $@ $(LDFLAGS)
+
+clean:
+ $(RM) gbafix gbafix.exe