summaryrefslogtreecommitdiff
path: root/2020-overdrive/Makefile
blob: a5db32e27937d807e447216fad50178e8689f7c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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