summaryrefslogtreecommitdiff
path: root/2019-worms/Makefile
diff options
context:
space:
mode:
authorJustin Wernick <justin@worthe-it.co.za>2022-04-19 21:27:56 +0200
committerJustin Wernick <justin@worthe-it.co.za>2022-04-19 21:27:56 +0200
commit3f5492b2bb67326be43cd7c5ba02ccf0ba1ae0e3 (patch)
tree96963ba885a9393106b4a88ffc4266203e87582e /2019-worms/Makefile
parent4ceec65b088f05d4ad03f9ac70b1d63452fd8197 (diff)
Refile for merging repos
Diffstat (limited to '2019-worms/Makefile')
-rw-r--r--2019-worms/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/2019-worms/Makefile b/2019-worms/Makefile
new file mode 100644
index 0000000..3f3b532
--- /dev/null
+++ b/2019-worms/Makefile
@@ -0,0 +1,16 @@
+build:
+ cargo build --release
+
+test:
+ cargo test --release
+
+profile:
+ cargo flamegraph --bin benchmark
+
+clean:
+ cargo clean
+
+submission.zip:
+ zip --filesync -r9 submission.zip bot.json Cargo.lock Cargo.toml src
+
+.PHONY: build test profile clean submission.zip