From ebae6200c0a06863f58e1c4eed553aa56ef01a86 Mon Sep 17 00:00:00 2001 From: bjarni Date: Sat, 1 Jul 2006 10:44:32 +0000 Subject: [PATCH] (svn r5439) -Backport [OSX] rev 5438 -Code cleanup [OSX] removed UNIVERSAL_BINARY as a phony target since the target is long gone. Also corrected BUILD_OSX_BUNDLE as phony target also corrected two $(BUILD_OSX_BUNDLE) to BUILD_OSX_BUNDLE, so the bundle will always build --- os/macosx/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/os/macosx/Makefile b/os/macosx/Makefile index 6cdcaad622..8456b85360 100644 --- a/os/macosx/Makefile +++ b/os/macosx/Makefile @@ -84,7 +84,7 @@ endif # build the bundle. OSX wants to keep apps in bundles, so we will give it one # the good thing about bundles is that you can keep extra files in them, so we keep lng files and a data dir in it -$(BUILD_OSX_BUNDLE): $(TTD) +BUILD_OSX_BUNDLE: $(TTD) @echo '===> Building application bundle' $(Q)rm -fr "$(OSXAPP)" $(Q)mkdir -p "$(OSXAPP)"/Contents/MacOS @@ -118,6 +118,6 @@ release: all $(Q)/usr/bin/hdiutil create -ov -format UDZO -srcfolder "OpenTTD $(REV)" openttd-"$(REV)"-osx"$(JAGUAR_POSTFIX)".dmg $(Q)rm -fr "OpenTTD $(REV)" -$(OSX): $(TTD) $(BUILD_OSX_BUNDLE) +$(OSX): $(TTD) BUILD_OSX_BUNDLE -.PHONY: release $(BUILD_OSX_BUNDLE) $(UNIVERSAL_BINARY) +.PHONY: release BUILD_OSX_BUNDLE