summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2018-09-08 10:25:20 +0200
committerJustin Worthe <justin@worthe-it.co.za>2018-09-08 10:25:20 +0200
commit1a56ac6db8392aec65fe566505fa1df0214ed91a (patch)
treed86da148362111112bdb88fcd959cf41fbca5b31 /Makefile
parent8adf0daa3610807fbefb411c1c4af878b07230c6 (diff)
Added compile as a default build target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ec1506f..b5005da 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,5 @@
+default: build
+
build:
cargo build --release
@@ -19,4 +21,4 @@ clean:
submission.zip: bot.json Cargo.lock Cargo.toml src
zip -r9 submission.zip bot.json Cargo.lock Cargo.toml src
-.PHONY: build test bench profile clean
+.PHONY: default build test bench profile clean