summaryrefslogtreecommitdiff
path: root/actix/Makefile
blob: b815ebef8035a9dfeccc13945ec2498d803a63f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# vim: tabstop=4 shiftwidth=4 noexpandtab

debug:
	cargo build
	./target/debug/actix

release:
	cargo build --release

clean:
	cargo clean