diff options
author | davilla <davilla@4pi.com> | 2011-06-13 00:25:41 -0400 |
---|---|---|
committer | davilla <davilla@4pi.com> | 2011-06-13 00:25:41 -0400 |
commit | 30cf766dd1933d42fc5cdfe8fb6dd028037fc70c (patch) | |
tree | 801dd15b917980b4a1a4577539ca2bcc81366300 | |
parent | a45dfd9637aa46db27a98762d1df9f34b076a73b (diff) |
[osx/ios] add more clean objects to darwin depends
-rw-r--r-- | tools/darwin/depends/Makefile.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/darwin/depends/Makefile.in b/tools/darwin/depends/Makefile.in index ea7d041353..8ee615aa3e 100644 --- a/tools/darwin/depends/Makefile.in +++ b/tools/darwin/depends/Makefile.in @@ -34,6 +34,18 @@ clean: for d in $(BUILDTOOLS); do if test -f $$d/Makefile; then $(MAKE) -C $$d clean; fi; done for d in $(SUBDIRS); do if test -f $$d/Makefile; then $(MAKE) -C $$d clean; fi; done +cleanbuildtools: + for d in $(BUILDTOOLS); do if test -f $$d/Makefile; then $(MAKE) -C $$d clean; fi; done + +cleanbuilddepends: + for d in $(SUBDIRS); do if test -f $$d/Makefile; then $(MAKE) -C $$d clean; fi; done + +cleantoolchain: + rm -rf $(TOOLCHAIN) + +cleanprefix: + rm -rf $(PREFIX) + distclean:: for d in $(BUILDTOOLS); do if test -f $$d/Makefile; then $(MAKE) -C $$d distclean; fi; done for d in $(SUBDIRS); do if test -f $$d/Makefile; then $(MAKE) -C $$d distclean; fi; done |