diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2011-09-02 19:51:18 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2011-09-02 19:51:18 +0200 |
commit | c2a5d286f016f53c35ea5823b584883436ea307c (patch) | |
tree | 90ebb7f9d096d8ac600d40d25f7395ecd1aaeac8 /Makefile | |
parent | 3fa6f6ab7caaa8d797df9717ce7239096a2851a9 (diff) |
Add check target to Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -2,4 +2,12 @@ all: ./bootstrap clean: - @rm -rf rebar ebin/*.beam inttest/rt.work
\ No newline at end of file + @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 |