Updated Makefile to only build release OS X app bundles

This commit is contained in:
jeremiah sypult 2013-07-18 00:47:00 -05:00
parent 95138f456e
commit 744651f72f
2 changed files with 5 additions and 5 deletions

View File

@ -1205,8 +1205,8 @@ endif
NAKED_TARGETS=$(shell echo $(TARGETS) | sed -e "s!$(B)/!!g") 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_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_MAKE_APP=@if [ -x "./make-macosx-app.sh" ]; then "./make-macosx-app.sh" release $(ARCH); fi
print_list=@for i in $(1); \ print_list=@for i in $(1); \
do \ do \

View File

@ -234,10 +234,10 @@ if [ "${IOQ3_CLIENT_ARCHS}" == "" ]; then
echo "$0: no ioquake3 binary architectures were found for target '${TARGET_NAME}'" echo "$0: no ioquake3 binary architectures were found for target '${TARGET_NAME}'"
exit 1 exit 1
else else
echo "Creating bundle '${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}'\c" echo "Creating bundle '${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}'"
echo " with architectures: \c" echo "with architectures:"
for ARCH in ${VALID_ARCHS}; do for ARCH in ${VALID_ARCHS}; do
echo "${ARCH} \c" echo " ${ARCH}"
done done
echo "" echo ""
fi fi