diff options
author | Eric <[email protected]> | 2012-09-17 12:12:13 -0500 |
---|---|---|
committer | Eric <[email protected]> | 2012-09-18 10:08:40 -0700 |
commit | 79a28e0e498c4727dde2546ff83da6cb81e907e6 (patch) | |
tree | 0e1afb07d459b379039a24fb45f9f13f613049b8 /Makefile | |
parent | 6f06c48a9ce7ff9b5a01b9210b7314ba4a3b24e9 (diff) | |
download | relx-79a28e0e498c4727dde2546ff83da6cb81e907e6.tar.gz relx-79a28e0e498c4727dde2546ff83da6cb81e907e6.tar.bz2 relx-79a28e0e498c4727dde2546ff83da6cb81e907e6.zip |
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.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |