Skip to content

Commit

Permalink
use rm -rf for deleting target directory, when running make clean
Browse files Browse the repository at this point in the history
  • Loading branch information
fs111 committed Jun 16, 2012
1 parent 24dac58 commit 2d3ba61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ test: src/*.go
go test src/*.go

clean:
@rm -r $(CLEANFILES)
@rm -r $(TARG)
@rm -rf $(CLEANFILES)
@rm -rf $(TARG)

bin-dist: $(TARG) assets
@cp -rf conf/kurz.conf $(MYTARGDIR)/etc/kurz/
Expand Down

0 comments on commit 2d3ba61

Please sign in to comment.