Skip to content

Commit

Permalink
Two Makefile targets added: analyze & console.
Browse files Browse the repository at this point in the history
* The new analyze target run dialyzer on the project.
* The new console target opens a new erl REPL console with the path
prepended with the project and all dependency ebin and include subdirs.
  • Loading branch information
mbbx6spp committed Feb 8, 2011
1 parent be024ce commit 4f6aaee
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions project_Makefile
Expand Up @@ -30,3 +30,9 @@ doc:
for app in $(APPS); do \
cp -R apps/$${app}/doc doc/$${app}; \
done;

analyze:
rebar skip_deps=true analyze

console:
erl -pa deps/*/ebin deps/*/include ebin include -boot start_sasl

0 comments on commit 4f6aaee

Please sign in to comment.