# HG changeset patch # User John Tsiombikas # Date 1329665141 -7200 # Node ID 9e8fb79fd959493347f5e5c5ecc252595c853375 # Parent ff055bff6a15c6fee65c7312d4148c83ae9755c8 converted to xcode 4 created xcodebuild makefile diff -r ff055bff6a15 -r 9e8fb79fd959 Makefile.xcbuild --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile.xcbuild Sun Feb 19 17:25:41 2012 +0200 @@ -0,0 +1,38 @@ +simsdk = iphonesimulator5.0 +devsdk = iphoneos5.0 + + +.PHONY: all +all: + @echo 'please specify target sim or device'; false + +.PHONY: sim +sim: sim-debug + +.PHONY: device +device: device-debug + +.PHONY: sim-debug +sim-debug: + xcodebuild -configuration Debug -sdk $(simsdk) + +.PHONY: sim-release +sim-release: + xcodebuild -configuration Release -sdk $(simsdk) + +.PHONY: device-debug +device-debug: + xcodebuild -configuration Debug -sdk $(devsdk) + +.PHONY: device-release +device-release: + xcodebuild -configuration Release -sdk $(devsdk) + +.PHONY: clean +clean: + xcodebuild clean + +# untested +.PHONY: install +install: + xcodebuild install diff -r ff055bff6a15 -r 9e8fb79fd959 istereo.xcodeproj/project.pbxproj --- a/istereo.xcodeproj/project.pbxproj Sun Sep 11 09:03:18 2011 +0300 +++ b/istereo.xcodeproj/project.pbxproj Sun Feb 19 17:25:41 2012 +0200 @@ -662,6 +662,9 @@ /* Begin PBXProject section */ 29B97313FDCFA39411CA2CEA /* Project object */ = { isa = PBXProject; + attributes = { + LastUpgradeCheck = 0420; + }; buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "istereo" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; @@ -890,7 +893,6 @@ libs/vmath, libs/imago2, ); - PREBINDING = NO; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = ""; }; @@ -915,7 +917,6 @@ libs/imago2, ); OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1"; - PREBINDING = NO; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = ""; };