From 1a1b87bf53e899a5525710018ac83c1280e67191 Mon Sep 17 00:00:00 2001 From: Eric Merritt Date: Thu, 25 Oct 2012 08:55:41 -0500 Subject: [PATCH] add a clean and rebuild task to makefile Signed-off-by: Jordan Wilberding --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 55ab0fd..7ee2120 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,8 @@ endif ERLWARE_COMMONS_PLT=$(CURDIR)/.erlware_commons_plt -.PHONY: all compile doc clean test dialyzer typer shell distclean pdf get-deps escript +.PHONY: all compile doc clean test dialyzer typer shell distclean pdf get-deps \ + rebuild all: compile test doc dialyzer @@ -62,3 +63,5 @@ clean: distclean: clean rm -rf $(ERLWARE_COMMONS_PLT) rm -rvf $(CURDIR)/deps/* + +rebuild: distclean all