X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=distrib%2FMacOS%2FMakefile;h=eef566185f7b27c426d2a6e5f42474add9affa6a;hb=ce98fae80f3868fdd3ccecc14212aced894243e8;hp=5287292fc010a3cf0926dbad10d376d620879a36;hpb=63c2dd1dfa6e8ab87e5c2ebf47d43edfb9805c68;p=ghc-hetmet.git diff --git a/distrib/MacOS/Makefile b/distrib/MacOS/Makefile index 5287292..eef5661 100644 --- a/distrib/MacOS/Makefile +++ b/distrib/MacOS/Makefile @@ -20,23 +20,29 @@ # ############################################################################ -TOP=../.. -include $(TOP)/mk/boilerplate.mk +include ../../mk/config.mk -# The ProjectVersionInt is GHC's idea of an API version and hence determines -# the framework version. -FRAMEWORK_VERSION = $(ProjectVersionInt) +ifeq "$(ProjectVersion)" "" +$(error Please run ./configure first) +endif + +include ../../mk/custom-settings.mk + +# The framework version is a string like +# 7.0.1-i386 +# for an i386 build of GHC 7.0.1. It's used for the subdirectory of +# /Library/Frameworks/GHC.framework/Versions/ +FRAMEWORK_VERSION = $(ProjectVersion)-$(TargetArch_CPP) # Xcode requires CURRENT_PROJECT_VERSION to be an int or float. We use this # only as the build version (aka CFBundleVersion). CURRENT_PROJECT_VERSION = $(ProjectVersionInt).$(ProjectPatchLevel) -# The user-visible CFBundleShortVersionString is set to the standard GHC -# version number. -SHORT_VERSION_STRING = $(ProjectVersion) +# The user-visible CFBundleShortVersionString +SHORT_VERSION_STRING = $(FRAMEWORK_VERSION) # Name of the installer package -PACKAGE_NAME = GHC-$(ProjectVersion)-$(TargetArch_CPP).pkg +PACKAGE_NAME = GHC-$(FRAMEWORK_VERSION).pkg # Determine arguments that should be passed to ./configure from within Xcode # @@ -64,7 +70,7 @@ endif DSTROOT=/tmp/GHC.dst # Tools directory for a system volume install -TOOLS_SYSTEM=$(DSTROOT)/Library/Frameworks/GHC.framework/Tools +TOOLS_SYSTEM=$(DSTROOT)/Library/Frameworks/GHC.framework/Versions/$(FRAMEWORK_VERSION)/Tools PACKAGEMAKER=/Developer/usr/bin/packagemaker @@ -82,14 +88,29 @@ framework-pkg: -$(RM) -rf $(DSTROOT) mkdir -p $(TOOLS_SYSTEM) cp installer-scripts/Uninstaller $(TOOLS_SYSTEM) - xcodebuild -target GHC-systemwide clean build install\ + cp installer-scripts/create-links $(TOOLS_SYSTEM) + xcodebuild -target GHC-systemwide clean build\ CURRENT_PROJECT_VERSION=$(CURRENT_PROJECT_VERSION)\ SHORT_VERSION_STRING=$(SHORT_VERSION_STRING)\ FRAMEWORK_VERSION=$(FRAMEWORK_VERSION)\ - CURRENT_LIBRARY_VERSION=$(FRAMEWORK_VERSION) + CURRENT_LIBRARY_VERSION=$(FRAMEWORK_VERSION)\ + COMMAND_MODE=unix2003 + xcodebuild -target GHC-systemwide install\ + CURRENT_PROJECT_VERSION=$(CURRENT_PROJECT_VERSION)\ + SHORT_VERSION_STRING=$(SHORT_VERSION_STRING)\ + FRAMEWORK_VERSION=$(FRAMEWORK_VERSION)\ + CURRENT_LIBRARY_VERSION=$(FRAMEWORK_VERSION)\ + COMMAND_MODE=unix2003 -$(RM) -f GHC-system.pmdoc/*-contents.xml $(PACKAGEMAKER) -v --doc GHC-system.pmdoc\ - $(PACKAGEMAKER_TARGET) -o $(TOP)/$(PACKAGE_NAME) + $(PACKAGEMAKER_TARGET) -o $(TOP)/$(PACKAGE_NAME)\ + -i org.haskell.ghc.$(FRAMEWORK_VERSION) + +# If we don't specify COMMAND_MODE=unix2003 then xcodebuild defaults +# to setting it to legacy, which means that ar builds archives +# without a table of contents. That makes the build fail later on. + + # Instead of making 'binary-dist' a Makefile dependency, we let xcodebuild call # 'make binary-dist'. This has the advantage that xcode knows the framework