summaryrefslogtreecommitdiff
path: root/tools/msgenc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/msgenc/Makefile')
-rw-r--r--tools/msgenc/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/msgenc/Makefile b/tools/msgenc/Makefile
new file mode 100644
index 00000000..da455633
--- /dev/null
+++ b/tools/msgenc/Makefile
@@ -0,0 +1,13 @@
+CC := gcc
+CFLAGS := -O2
+
+.PHONY: all clean
+
+all: msgenc
+ @:
+
+clean:
+ $(RM) msgenc msgenc.exe
+
+msgenc: msgenc.c
+ $(CC) $(CFLAGS) -o $@ $^