mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-10-31 15:20:10 +00:00
04f072c3c1
the package is long gone and people don't read a doc about a missing package when they don't expect to find one the doc is called install even though it's not a real install and have nothing to do with make install. People just read it the first time they see it when it's called install ;)
84 lines
3.6 KiB
Makefile
84 lines
3.6 KiB
Makefile
# $Id: Makefile 3214 2005-11-17 19:43:37Z bjarni $
|
|
# This makefile is not a standalone makefile, but is called from the general one
|
|
# it contains targets specific to MacOS X
|
|
|
|
ifdef UNIVERSAL_BINARY
|
|
ifdef TRIPPLE_BINARY
|
|
TRIPPLE_BINARY:=tripple_binary
|
|
endif
|
|
UNIVERSAL_BINARY:=build_universal_binary
|
|
endif
|
|
|
|
ifdef UNIVERSAL_PPC_PART
|
|
# the bundle is build by the PPC compile when making universal binaries
|
|
BUILD_OSX_BUNDLE:=
|
|
else
|
|
BUILD_OSX_BUNDLE:=build_OSX_bundle
|
|
endif
|
|
|
|
# building an universal binary
|
|
# since we can only compile for PPC or x86 at any one time, we compile one and then
|
|
# we make clean and compile the other one. In the end we use lipo to join them together
|
|
# when this is done, we can continue with the targets from the first run, which is build_OSX_bundle
|
|
|
|
$(UNIVERSAL_BINARY): $(TTD)
|
|
$(Q)mkdir -p temp_binary_dir
|
|
$(Q)cp $(TTD) temp_binary_dir/$(TTD)_a
|
|
$(Q)rm -rf $(TTD) $(OBJS) # delete all .o files so we can compile for a new CPU
|
|
$(Q)make UNIVERSAL_PPC_PART:=1
|
|
$(Q)cp $(TTD) temp_binary_dir/$(TTD)_b
|
|
@echo '===> Joining the PPC and x86 binaries into one universal one'
|
|
$(Q)lipo temp_binary_dir/$(TTD)_a temp_binary_dir/$(TTD)_b -create -output $(TTD)
|
|
$(Q)rm -rf temp_binary_dir
|
|
|
|
$(TRIPPLE_BINARY): $(UNIVERSAL_BINARY)
|
|
$(Q)mkdir -p temp_binary_dir
|
|
$(Q)cp $(TTD) temp_binary_dir/$(TTD)_a
|
|
$(Q)rm -rf $(TTD) $(OBJS) # delete all .o files so we can compile for a new CPU
|
|
$(Q)make UNIVERSAL_PPC_PART:=1 IS_G5:=1
|
|
$(Q)cp $(TTD) temp_binary_dir/$(TTD)_b
|
|
@echo '===> Joining the Universal and G5 binaries into a tripple binary'
|
|
$(Q)lipo temp_binary_dir/$(TTD)_a temp_binary_dir/$(TTD)_b -create -output $(TTD)
|
|
$(Q)rm -rf temp_binary_dir
|
|
|
|
# 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) $(UNIVERSAL_BINARY) $(TRIPPLE_BINARY)
|
|
@echo '===> Building application bundle'
|
|
$(Q)rm -fr "$(OSXAPP)"
|
|
$(Q)mkdir -p "$(OSXAPP)"/Contents/MacOS
|
|
$(Q)mkdir -p "$(OSXAPP)"/Contents/Resources
|
|
$(Q)mkdir -p "$(OSXAPP)"/Contents/Data
|
|
$(Q)mkdir -p "$(OSXAPP)"/Contents/Lang
|
|
$(Q)echo "APPL????" > "$(OSXAPP)"/Contents/PkgInfo
|
|
$(Q)cp os/macosx/openttd.icns "$(OSXAPP)"/Contents/Resources/openttd.icns
|
|
$(Q)os/macosx/plistgen.sh "$(OSXAPP)" "$(REV)"
|
|
$(Q)cp data/* "$(OSXAPP)"/Contents/Data/
|
|
$(Q)cp os/macosx/splash.png "$(OSXAPP)"/Contents/Data/
|
|
$(Q)cp lang/*.lng "$(OSXAPP)"/Contents/Lang/
|
|
$(Q)cp $(TTD) "$(OSXAPP)"/Contents/MacOS/$(TTD)
|
|
|
|
# make the release disk image. Should only be used with releases and is a good and fast way to make sure to remember all the needed files
|
|
release: all
|
|
$(Q)mkdir -p "OpenTTD $(RELEASE)"
|
|
$(Q)mkdir -p "OpenTTD $(RELEASE)"/docs
|
|
$(Q)mkdir -p "OpenTTD $(RELEASE)"/scenario
|
|
$(Q)cp -R $(OSXAPP) "OpenTTD $(RELEASE)"/
|
|
$(Q)cp docs/OSX_install_instructions.txt "OpenTTD $(RELEASE)"/How\ to\ install\ (please\ read).txt
|
|
$(Q)cp readme.txt "OpenTTD $(RELEASE)"/docs/
|
|
$(Q)cp docs/README_if_game_crashed_on_OSX.txt "OpenTTD $(RELEASE)"/docs/readme\ if\ crashed\ on\ OSX.txt
|
|
$(Q)cp docs/console.txt "OpenTTD $(RELEASE)"/docs/
|
|
$(Q)cp COPYING "OpenTTD $(RELEASE)"/docs/
|
|
$(Q)cp changelog.txt "OpenTTD $(RELEASE)"/docs/
|
|
$(Q)cp docs/README_if_game_crashed_on_OSX.txt "OpenTTD $(RELEASE)"/docs/
|
|
$(Q)cp os/macosx/*.webloc "OpenTTD $(RELEASE)"
|
|
$(Q)cp known-bugs.txt "OpenTTD $(RELEASE)"/known-bugs.txt
|
|
$(Q)cp scenario/* "OpenTTD $(RELEASE)"/scenario/
|
|
$(Q)/usr/bin/hdiutil create -ov -format UDZO -srcfolder "OpenTTD $(RELEASE)" openttd-"$(RELEASE)"-osx.dmg
|
|
$(Q)rm -fr "OpenTTD $(RELEASE)"
|
|
|
|
$(OSX): $(TTD) $(BUILD_OSX_BUNDLE)
|
|
|
|
.PHONY: release $(BUILD_OSX_BUNDLE) $(UNIVERSAL_BINARY)
|