1
0
Fork 0
mirror of https://github.com/correl/rebar.git synced 2025-03-13 17:00:22 -09:00
rebar/Makefile

23 lines
388 B
Makefile
Raw Normal View History

.PHONY: dialyzer_warnings xref_warnings
all:
./bootstrap
2010-06-08 13:23:36 -06:00
clean:
2011-09-02 19:51:18 +02:00
@rm -rf rebar ebin/*.beam inttest/rt.work
debug:
@./bootstrap debug
check: debug xref dialyzer
xref:
-@./rebar xref
dialyzer: dialyzer_warnings
@diff -U0 dialyzer_reference dialyzer_warnings
2011-09-02 19:51:18 +02:00
dialyzer_warnings:
-@dialyzer -q -n ebin -Wunmatched_returns -Werror_handling \
-Wrace_conditions > dialyzer_warnings