diff options
| -rw-r--r-- | Makefile | 4 | 
1 files changed, 4 insertions, 0 deletions
| @@ -1,11 +1,14 @@ +.PHONY: release  release:  	xcodebuild -scheme 'Word Count' -configuration Release +.PHONY: clean-release  clean-release:  	xcodebuild -project 'Word Count.xcodeproj' \  		-configuration Release \  		clean +.PHONY: archive  archive: clean-release release  	xcodebuild -project 'Word Count.xcodeproj' \  		-scheme 'Word Count' \ @@ -19,6 +22,7 @@ archive: clean-release release  		-exportOptionsPlist export-options.plist \  		-exportPath build +.PHONY: zip  zip: archive  	cd build; \  	zip -r 'Word Count.zip' 'Word Count.app' | 
