mirror of
https://github.com/correl/rebar.git
synced 2024-11-24 03:00:14 +00:00
Makefile: fix 'clean' and add 'distclean'
* fix 'clean' to remove .eunit (not .test) * add 'distclean' to also remove deps/
This commit is contained in:
parent
5079bd5949
commit
8e12652aa6
1 changed files with 4 additions and 1 deletions
5
Makefile
5
Makefile
|
@ -7,7 +7,10 @@ all:
|
||||||
./bootstrap
|
./bootstrap
|
||||||
|
|
||||||
clean:
|
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:
|
debug:
|
||||||
@./bootstrap debug
|
@./bootstrap debug
|
||||||
|
|
Loading…
Reference in a new issue