diff options
| author | Teddy Wing | 2018-10-08 18:41:50 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2018-10-08 18:41:50 +0200 | 
| commit | cb001f10751d924de53d9078be62d6bdeeb8a7cc (patch) | |
| tree | 50590bc7940f2a4bff0c5c56e3751fbc4a72f1aa /Makefile | |
| parent | a630d33808f5ea7a4a2221c5cb202ccd518c1e08 (diff) | |
| download | Word-Count-1.0.tar.bz2 | |
Makefile: Make targets PHONYv1.0
Diffstat (limited to 'Makefile')
| -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' | 
