Remove output of command line when executing dialyzer.

This commit is contained in:
Juan Jose Comellas 2010-09-23 15:14:41 -03:00
parent 4de6670d02
commit 8f54692a29

View File

@ -20,13 +20,13 @@ doc:
@./rebar doc
plt: compile
$(DIALYZER) --build_plt --output_plt $(PLT_FILE) --apps $(APPS) ebin
@$(DIALYZER) --build_plt --output_plt $(PLT_FILE) --apps $(APPS) ebin
check_plt: compile
$(DIALYZER) --check_plt --plt $(PLT_FILE) --apps $(APPS) ebin
@$(DIALYZER) --check_plt --plt $(PLT_FILE) --apps $(APPS) ebin
analyze: compile
$(DIALYZER) --plt $(PLT_FILE) $(DIALYZER_OPTS) -r ebin
@$(DIALYZER) --plt $(PLT_FILE) $(DIALYZER_OPTS) -r ebin
clean:
@./rebar clean