Making the script to build universal binaries

This commit is contained in:
Mengjuei 2011-10-05 01:01:34 -07:00
parent 4d48f09dc7
commit 33e6de5ea2
2 changed files with 21 additions and 2 deletions

View File

@ -15,11 +15,13 @@ clean:
release:
@killall -9 McBopomofo; sleep 2
xcodebuild -target Lettuce -configuration Release
xcodebuild -target Lettuce -configuration Release \
-arch i386 -arch x86_64
debug:
@killall -9 McBopomofo; sleep 2
xcodebuild -target Lettuce -configuration Debug
xcodebuild -target Lettuce -configuration Debug \
-arch i386 -arch x86_64
install: release

17
pyInstaller/Makefile Normal file
View File

@ -0,0 +1,17 @@
# Author of this Makefile:
# Mengjuei Hsieh, University of California Irvine
info:
@echo "This script is for mjhsieh only"
@echo "You need to read the Makefile to see what it's doing"
clean:
xcodebuild clean
release:
xcodebuild -target Installer -configuration Release \
-arch i386 -arch x86_64
debug:
xcodebuild -target Installer -configuration Debug \
-arch i386 -arch x86_64