From 67acaaaf3fabdf9518363199d96d37fe53a09331 Mon Sep 17 00:00:00 2001 From: Eric Merritt Date: Sat, 8 Sep 2012 09:02:12 -0500 Subject: [PATCH] minor fixes and enhancements to the makefile Signed-off-by: Jordan Wilberding --- Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index d32718a..933ce28 100644 --- a/Makefile +++ b/Makefile @@ -14,9 +14,9 @@ endif ERLWARE_COMMONS_PLT=$(CURDIR)/.erlware_commons_plt -.PHONY: all compile doc clean eunit dialyzer typer shell distclean pdf get-deps escript +.PHONY: all compile doc clean test dialyzer typer shell distclean pdf get-deps escript -all: compile eunit dialyzer +all: compile test dialyzer get-deps: $(REBAR) get-deps @@ -28,7 +28,7 @@ compile: doc: compile $(REBAR) skip_deps=true doc -eunit: compile +test: compile $(REBAR) skip_deps=true eunit $(ERLWARE_COMMONS_PLT): @@ -53,11 +53,11 @@ shell: compile @$(ERL) $(ERLFLAGS) clean: - $(REBAR) clean - rm $(CURDIR)/doc/*.html - rm $(CURDIR)/doc/*.css - rm $(CURDIR)/doc/*.png - rm $(CURDIR)/doc/edoc-info + $(REBAR) skip_deps=true clean + - rm $(CURDIR)/doc/*.html + - rm $(CURDIR)/doc/*.css + - rm $(CURDIR)/doc/*.png + - rm $(CURDIR)/doc/edoc-info distclean: clean rm -rf $(ERLWARE_COMMONS_PLT)