summaryrefslogtreecommitdiff
path: root/tools/mwasmarm_patcher
diff options
context:
space:
mode:
Diffstat (limited to 'tools/mwasmarm_patcher')
-rw-r--r--tools/mwasmarm_patcher/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/mwasmarm_patcher/Makefile b/tools/mwasmarm_patcher/Makefile
index df3f5c20..1e89832e 100644
--- a/tools/mwasmarm_patcher/Makefile
+++ b/tools/mwasmarm_patcher/Makefile
@@ -3,9 +3,12 @@
CC := gcc
CFLAGS := -O3
+.PHONY: all clean
+
all: mwasmarm_patcher
+ @
-clean: ; rm -f mwasmarm_patcher$(EXE)
+clean: ; $(RM) mwasmarm_patcher$(EXE)
mwasmarm_patcher: mwasmarm_patcher.c
$(CC) $(CFLAGS) -o $@ $<