ratatui/Makefile
2016-11-06 21:41:32 +01:00

14 lines
267 B
Makefile

build:
cargo build
test:
cargo test
doc:
cargo doc
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