mirror of
https://github.com/fdehau/tui-rs.git
synced 2024-10-30 21:20:22 +00:00
17 lines
308 B
Makefile
17 lines
308 B
Makefile
build:
|
|
cargo build
|
|
test:
|
|
cargo test
|
|
doc:
|
|
cargo doc
|
|
clippy:
|
|
rustup run nightly cargo clippy
|
|
watch:
|
|
watchman-make -p 'src/**/*.rs' -t build -p 'test/**/*.rs' -t test
|
|
|
|
watch-test:
|
|
watchman-make -p 'src/**/*.rs' 'tests/**/*.rs' 'examples/**/*.rs' -t test
|
|
|
|
watch-doc:
|
|
watchman-make -p 'src/**/*.rs' -t doc
|