diff options
| author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-11-23 17:59:15 +0100 |
|---|---|---|
| committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-11-26 13:39:42 +0100 |
| commit | 8e12652aa6fb05d093125d7dd9dba09daa476516 (patch) | |
| tree | 78127139f1963c393edbcfccac0e1ddaf5d41db0 | |
| parent | 5079bd5949389963ad8abf22e3cc750d2b837e31 (diff) | |
Makefile: fix 'clean' and add 'distclean'
* fix 'clean' to remove .eunit (not .test)
* add 'distclean' to also remove deps/
| -rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |
