You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 line
474 B

  1. .PHONY: dialyzer_warnings xref_warnings
  2. all:
  3. ./bootstrap
  4. clean:
  5. @rm -rf rebar ebin/*.beam inttest/rt.work
  6. debug:
  7. @./bootstrap debug
  8. check: debug xref dialyzer
  9. xref: xref_warnings
  10. @diff -U0 xref_reference xref_warnings
  11. xref_warnings:
  12. -@./rebar xref > xref_warnings
  13. dialyzer: dialyzer_warnings
  14. @diff -U0 dialyzer_reference dialyzer_warnings
  15. dialyzer_warnings:
  16. -@dialyzer -q -n ebin -Wunmatched_returns -Werror_handling \
  17. -Wrace_conditions > dialyzer_warnings