Makefile: fix 'clean' and add 'distclean'

* fix 'clean' to remove .eunit (not .test)
* add 'distclean' to also remove deps/
This commit is contained in:
Tuncer Ayaz 2012-11-23 17:59:15 +01:00
parent 5079bd5949
commit 8e12652aa6

View file

@ -7,7 +7,10 @@ all:
./bootstrap
clean:
@rm -rf rebar ebin/*.beam inttest/rt.work rt.work .test
@rm -rf rebar ebin/*.beam inttest/rt.work rt.work .eunit
distclean: clean
@rm -rf deps
debug:
@./bootstrap debug