diff options
author | davilla <davilla@4pi.com> | 2011-06-13 02:00:09 -0400 |
---|---|---|
committer | davilla <davilla@4pi.com> | 2011-06-13 02:00:37 -0400 |
commit | 9b382f2c6fa7b03612046d6b38f39b28b1ae5c58 (patch) | |
tree | 97fa1543202d517312f32107a05e04b4b799fabd | |
parent | f21ccf083d9046adb4017da694e5420203d923dd (diff) |
[osx/ios] changed main makefile behavior, make clean will make distclean on all depends leaving prefix and toolchain dirs untouched.
-rw-r--r-- | tools/darwin/depends/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/darwin/depends/Makefile.in b/tools/darwin/depends/Makefile.in index 8ee615aa3e..11c5606b59 100644 --- a/tools/darwin/depends/Makefile.in +++ b/tools/darwin/depends/Makefile.in @@ -31,14 +31,14 @@ $(SUBDIRS): $(MAKE) -C $@ 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 + 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 cleanbuildtools: - for d in $(BUILDTOOLS); do if test -f $$d/Makefile; then $(MAKE) -C $$d clean; fi; done + for d in $(BUILDTOOLS); do if test -f $$d/Makefile; then $(MAKE) -C $$d distclean; fi; done cleanbuilddepends: - for d in $(SUBDIRS); 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 distclean; fi; done cleantoolchain: rm -rf $(TOOLCHAIN) |