blob: 80d52acb327eddcff18932951d4372cb87e1eb7f (
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 -Wunderspecs
|