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