16 lines
339 B
Makefile
16 lines
339 B
Makefile
# 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
|
|
|
|
debug:
|
|
xcodebuild -target Installer -configuration Debug
|