From 23a823c3bab3ffefc88e34f4fe445db91e4ca100 Mon Sep 17 00:00:00 2001 From: varnerac-ubnt Date: Wed, 16 Jul 2014 20:16:51 -0400 Subject: [PATCH] Makefile fixes Fix typo in Makefile `release` target, changed dependency from `dialyze` to `dialyzer`. Added `erts` to applications included in the dialyzer PLT file. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c1efd710..8febae99 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ PROJECT = lhttpc REBAR := ./rebar DIALYZER = dialyzer -APPS = kernel stdlib sasl inets ssl public_key crypto compiler +APPS = kernel erts stdlib sasl inets ssl public_key crypto compiler all: compile doc @@ -18,7 +18,7 @@ doc: test: compile $(REBAR) eunit -release: all dialyze test +release: all dialyzer test $(REBAR) release clean: