From c155308e5d28f249c208c2f820c5a409a1e5474a Mon Sep 17 00:00:00 2001 From: jeremiah sypult Date: Thu, 18 Jul 2013 00:47:00 -0500 Subject: Updated Makefile to only build release OS X app bundles --- Makefile | 4 ++-- make-macosx-app.sh | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index fe444b37..33a9365f 100644 --- a/Makefile +++ b/Makefile @@ -1154,8 +1154,8 @@ endif NAKED_TARGETS=$(shell echo $(TARGETS) | sed -e "s!$(B)/!!g") -MACOSX_TARGET_STRING=$(shell if [ "$(B)" == "$(BR)" ]; then echo "release"; elif [ "$(B)" == "$(BD)" ]; then echo "debug"; fi) -MACOSX_MAKE_APP=@if [ -x "./make-macosx-app.sh" ]; then "./make-macosx-app.sh" $(MACOSX_TARGET_STRING) $(ARCH); fi +#MACOSX_TARGET_STRING=$(shell if [ "$(B)" == "$(BR)" ]; then echo "release"; elif [ "$(B)" == "$(BD)" ]; then echo "debug"; fi) +MACOSX_MAKE_APP=@if [ -x "./make-macosx-app.sh" ]; then "./make-macosx-app.sh" release $(ARCH); fi print_list=@for i in $(1); \ do \ diff --git a/make-macosx-app.sh b/make-macosx-app.sh index 479bd375..ed73aa20 100755 --- a/make-macosx-app.sh +++ b/make-macosx-app.sh @@ -234,10 +234,10 @@ if [ "${IOQ3_CLIENT_ARCHS}" == "" ]; then echo "$0: no ioquake3 binary architectures were found for target '${TARGET_NAME}'" exit 1 else - echo "Creating bundle '${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}'\c" - echo " with architectures: \c" + echo "Creating bundle '${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}'" + echo "with architectures:" for ARCH in ${VALID_ARCHS}; do - echo "${ARCH} \c" + echo " ${ARCH}" done echo "" fi -- cgit