blob: 087c282d5983e88031f6a3eb14b5e6b8b7a2e0bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  | 
release:
	xcodebuild -scheme 'Word Count' -configuration Release
clean-release:
	xcodebuild -project 'Word Count.xcodeproj' \
		-configuration Release \
		clean
archive: clean-release release
	xcodebuild -project 'Word Count.xcodeproj' \
		-scheme 'Word Count' \
		-configuration Release \
		archive \
		-archivePath build/Release.xcarchive
	xcodebuild \
		-exportArchive \
		-archivePath build/Release.xcarchive \
		-exportOptionsPlist export-options.plist \
		-exportPath build
 
  |