summaryrefslogtreecommitdiff
path: root/tools/fixrom/Makefile
diff options
context:
space:
mode:
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