blob: 375bc81f5f183b199aa22574a563c5c7ad9b223c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
all:
./bootstrap
clean:
@rm -rf rebar ebin/*.beam inttest/rt.work
debug:
./bootstrap debug
check: debug
-@./rebar xref
-@dialyzer ebin --verbose -Wunmatched_returns -Werror_handling \
-Wrace_conditions
|