From 79a28e0e498c4727dde2546ff83da6cb81e907e6 Mon Sep 17 00:00:00 2001 From: Eric Date: Mon, 17 Sep 2012 12:12:13 -0500 Subject: dialyzer should run after compile but before tests Dialyzer has warnings that often would allow you to fix problems before the tests are even run. In some cases, dialyzer is even faster then the tests. So it makes sense to run dialyzer before any unit or common tests in the system. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e72f407..b41df54 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ endif .PHONY: all compile doc clean test dialyzer typer shell distclean pdf get-deps escript -all: compile escript test dialyzer +all: compile escript dialyzer test # ============================================================================= # Include relevant sub-makefiles. -- cgit v1.2.3