it-fsm/makefile

17 lines
255 B
Makefile
Raw Normal View History

2021-08-20 01:32:01 +03:00
DENO := deno
tests: clean fmt-check
$(DENO) test --coverage=cov_profile *.test.mjs
tests-cov: tests
$(DENO) coverage cov_profile --lcov > cov_profile/cov.lcov
fmt:
$(DENO) fmt *.mjs
fmt-check:
$(DENO) fmt *.mjs --check
clean:
rm -rf cov_profile