Skip to content

Commit

Permalink
GH #36: 'distclean' requires 3 traversals of project tree
Browse files Browse the repository at this point in the history
  • Loading branch information
aleks-f committed Jan 6, 2013
1 parent 5970207 commit 574be1a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Makefile
Expand Up @@ -234,6 +234,4 @@ clean:

distclean:
rm -rf $(POCO_BUILD)/lib
find $(POCO_BUILD) -name obj -type d -print0 | xargs -0 rm -rf
find $(POCO_BUILD) -name .dep -type d -print0 | xargs -0 rm -rf
find $(POCO_BUILD) -name bin -type d -print0 | xargs -0 rm -rf
find $(POCO_BUILD) \( -name bin -o -name .dep -o -name obj \) -type d -print0 | xargs -0 rm -rf

0 comments on commit 574be1a

Please sign in to comment.