From 8f54692a2967575124bded92a2aed6c5891ba313 Mon Sep 17 00:00:00 2001 From: Juan Jose Comellas Date: Thu, 23 Sep 2010 15:14:41 -0300 Subject: [PATCH] Remove output of command line when executing dialyzer. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d898c6b..2bd6f0d 100644 --- a/Makefile +++ b/Makefile @@ -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