add a clean and rebuild task to makefile

Signed-off-by: Jordan Wilberding <diginux@gmail.com>
This commit is contained in:
Eric Merritt 2012-10-25 08:55:41 -05:00 committed by Jordan Wilberding
parent b5371974d1
commit 1a1b87bf53

View file

@ -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