Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

26 řádky
528 B

před 15 roky
  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:
  10. @./rebar xref
  11. dialyzer: dialyzer_warnings
  12. @diff -U0 dialyzer_reference dialyzer_warnings
  13. dialyzer_warnings:
  14. -@dialyzer -q -n ebin -Wunmatched_returns -Werror_handling \
  15. -Wrace_conditions > dialyzer_warnings
  16. binary: VSN = $(shell ./rebar -V)
  17. binary: clean all
  18. cp rebar ../rebar.wiki/rebar
  19. (cd ../rebar.wiki && git commit -m "Update $(VSN)" rebar)