Making the script to build universal binaries
This commit is contained in:
parent
4d48f09dc7
commit
33e6de5ea2
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue