ratatui/Makefile

15 lines
248 B
Makefile
Raw Normal View History

2016-10-09 17:46:53 +00:00
build:
cargo build
test:
cargo test
2016-11-04 16:54:57 +00:00
doc:
cargo doc
2016-10-09 17:46:53 +00:00
watch:
watchman-make -p 'src/**/*.rs' -t build -p 'test/**/*.rs' -t test
2016-11-03 22:59:04 +00:00
watch-test:
watchman-make -p 'src/**/*.rs' 'tests/**/*.rs' -t test
2016-11-04 16:54:57 +00:00
watch-doc:
watchman-make -p 'src/**/*.rs' -t doc