summaryrefslogtreecommitdiff
path: root/2020-overdrive/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '2020-overdrive/Makefile')
-rw-r--r--2020-overdrive/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/2020-overdrive/Makefile b/2020-overdrive/Makefile
new file mode 100644
index 0000000..a5db32e
--- /dev/null
+++ b/2020-overdrive/Makefile
@@ -0,0 +1,15 @@
+default: build
+
+build:
+ cargo build --release
+
+test:
+ cargo test --release
+
+clean:
+ cargo clean
+
+submission.zip: bot.json Cargo.lock Cargo.toml src
+ zip -r9 submission.zip bot.json Cargo.lock Cargo.toml src
+
+.PHONY: default build test clean