X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=distrib%2FMacOS%2FMakefile;h=3d7852e7d43ae5030a780e1a3bd91a44819b45d5;hb=f58ede205875622262d7377093b785b84f5805d9;hp=312fbd76a87d3bc353dd39933d8c311a2eaa01e4;hpb=f0ffb7da8edb184558ab6fb5e0a9899f89572333;p=ghc-hetmet.git diff --git a/distrib/MacOS/Makefile b/distrib/MacOS/Makefile index 312fbd7..3d7852e 100644 --- a/distrib/MacOS/Makefile +++ b/distrib/MacOS/Makefile @@ -20,8 +20,13 @@ # ############################################################################ -TOP=../.. -include $(TOP)/mk/boilerplate.mk +include ../../mk/config.mk + +ifeq "$(ProjectVersion)" "" +$(error Please run ./configure first) +endif + +include ../../mk/custom-settings.mk # The ProjectVersionInt is GHC's idea of an API version and hence determines # the framework version. @@ -40,7 +45,7 @@ PACKAGE_NAME = GHC-$(ProjectVersion)-$(TargetArch_CPP).pkg # Determine arguments that should be passed to ./configure from within Xcode # -# By default, we pass whatever was used whne the present tree was configured. +# By default, we pass whatever was used when the present tree was configured. # The user can override this by setting XCODE_EXTRA_CONFIGURE_ARGS. If # MACOSX_DEPLOYMENT_TARGET is set, the target is added to whatever arguments # are passed. @@ -52,6 +57,13 @@ ifneq "$(MACOSX_DEPLOYMENT_TARGET)" "" XCODE_EXTRA_CONFIGURE_ARGS += --with-macosx-deployment-target=$(MACOSX_DEPLOYMENT_TARGET) endif +# Determine whether we need to pass a "-target" option to packagemaker +# +# If a deployment target has been set, we use the same target for packagemaker. +ifneq "$(MACOSX_DEPLOYMENT_TARGET)" "" +PACKAGEMAKER_TARGET = -target $(MACOSX_DEPLOYMENT_TARGET) +endif + # Xcode's installation build product location (this is where the GHC.framework # is assembled) DSTROOT=/tmp/GHC.dst @@ -75,13 +87,27 @@ framework-pkg: -$(RM) -rf $(DSTROOT) mkdir -p $(TOOLS_SYSTEM) cp installer-scripts/Uninstaller $(TOOLS_SYSTEM) - xcodebuild -target GHC-systemwide clean build install\ + 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 -o $(TOP)/$(PACKAGE_NAME) + $(PACKAGEMAKER) -v --doc GHC-system.pmdoc\ + $(PACKAGEMAKER_TARGET) -o $(TOP)/$(PACKAGE_NAME) + +# 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