diff options
Diffstat (limited to 'tools/mwasmarm_patcher/Makefile')
-rw-r--r-- | tools/mwasmarm_patcher/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/mwasmarm_patcher/Makefile b/tools/mwasmarm_patcher/Makefile new file mode 100644 index 00000000..1e89832e --- /dev/null +++ b/tools/mwasmarm_patcher/Makefile @@ -0,0 +1,14 @@ +.PHONY: all clean
+
+CC := gcc
+CFLAGS := -O3
+
+.PHONY: all clean
+
+all: mwasmarm_patcher
+ @
+
+clean: ; $(RM) mwasmarm_patcher$(EXE)
+
+mwasmarm_patcher: mwasmarm_patcher.c
+ $(CC) $(CFLAGS) -o $@ $<
|