summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: f5641f2a233ac6bbf80c2d597c54204f890b7109 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
build:
	cargo build
.PHONY: build

run:
	cargo run
.PHONY: run

console:
	RUSTFLAGS="--cfg tokio_unstable --cfg nbsh_tokio_console" cargo run
.PHONY: console

release:
	cargo build --release
.PHONY: release

run-release:
	cargo run --release
.PHONY: run-release

console-release:
	RUSTFLAGS="--cfg tokio_unstable --cfg nbsh_tokio_console" cargo run --release
.PHONY: console-release