summaryrefslogtreecommitdiff
path: root/tools/fixrom/Makefile
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2020-06-26 19:49:22 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2020-06-27 10:21:36 -0400
commit9ac9b8cefc392958f57c0d2aceb308e3f15dfbec (patch)
treee3768f619f27f19f6d3cf87405bda4e69a79711a /tools/fixrom/Makefile
parentc7a27c188361ac6cb261b3e86792560d4b295483 (diff)
Create fixrom to monkeypatch makerom
Dep scanning for o2narc targets Remove post-failure script because it can't be made to work
Diffstat (limited to 'tools/fixrom/Makefile')
-rw-r--r--tools/fixrom/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/fixrom/Makefile b/tools/fixrom/Makefile
new file mode 100644
index 00000000..7a3b5e0d
--- /dev/null
+++ b/tools/fixrom/Makefile
@@ -0,0 +1,13 @@
+CC := gcc
+CFLAGS := -O3
+
+.PHONY: all clean
+
+all: fixrom
+ @:
+
+fixrom: fixrom.c
+ $(CC) $(CFLAGS) -o $@ $^
+
+clean:
+ $(RM) fixrom fixrom.exe