diff options
author | davilla <davilla@4pi.com> | 2011-06-13 02:17:45 -0400 |
---|---|---|
committer | davilla <davilla@4pi.com> | 2011-06-13 02:17:45 -0400 |
commit | e8a1f308272b8be6d4ba79dae058430524769058 (patch) | |
tree | c7c077a59917cb3954fd0a8a2ee4b27bea43502f /tools/darwin | |
parent | 9b382f2c6fa7b03612046d6b38f39b28b1ae5c58 (diff) |
[osx/ios] fixed, do not remove bins from toolchain or prefix on depends make clean/distclean
Diffstat (limited to 'tools/darwin')
-rw-r--r-- | tools/darwin/depends/yasm/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/darwin/depends/yasm/Makefile b/tools/darwin/depends/yasm/Makefile index 75efac8a45..ae414cf837 100644 --- a/tools/darwin/depends/yasm/Makefile +++ b/tools/darwin/depends/yasm/Makefile @@ -14,7 +14,7 @@ APP=$(SOURCE)/$(APPNAME) APPBIN=$(TOOLCHAIN)/bin/$(APPNAME) YASM=$(PREFIX)/bin/$(APPNAME) -all: $(APPBIN) $(YASM) +all: $(YASM) $(TARBALLS_LOCATION)/$(ARCHIVE): $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE) @@ -33,12 +33,12 @@ $(APPBIN): make -C $(SOURCE) install $(YASM): $(APPBIN) + rm -f $(YASM) ln -s $(APPBIN) $(YASM) clean: make -C $(SOURCE) clean - rm -f $(APPBIN) $(YASM) distclean:: - rm -rf $(SOURCE) $(APPBIN) $(YASM) + rm -rf $(SOURCE) |