Skip to content
This repository has been archived by the owner on May 12, 2018. It is now read-only.

Commit

Permalink
Makefile: fix 'clean' and add 'distclean'
Browse files Browse the repository at this point in the history
* fix 'clean' to remove .eunit (not .test)
* add 'distclean' to also remove deps/
  • Loading branch information
Tuncer Ayaz committed Nov 26, 2012
1 parent 5079bd5 commit 8e12652
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8e12652

Please sign in to comment.