mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Updated Makefile to only build release OS X app bundles
This commit is contained in:
parent
95138f456e
commit
744651f72f
2 changed files with 5 additions and 5 deletions
4
Makefile
4
Makefile
|
@ -1205,8 +1205,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 \
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue