summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Wührer <def@gmx.at>2023-04-07 19:43:08 +0200
committerDavid Wührer <def@gmx.at>2023-04-07 19:43:08 +0200
commit1ec6add6a762ad665f38edb9e2f763ff7e209664 (patch)
tree44ecf5ddf9d17c5551c9a7cc7253f959f16c2212
parent4835b5090fa075441acdfe6da045b3a893aa6b2b (diff)
Optimise build
-rwxr-xr-x[-rw-r--r--]Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fbd23ca..d9dbf06 100644..100755
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,11 @@
+#!/usr/bin/make -f
+
+CFLAGS = -Oz $(LFLAGS)
+LFLAGS = -Bstatic -s
+
all: english2uryuomoco uryuomoco2english
-.PHONY: all
+clean:
+ rm -rf english2uryuomoco uryuomoco2english
+.PHONY: all clean