From 236b18b9f7631c15431978ec30571a555c15d16e Mon Sep 17 00:00:00 2001 From: Bruno de Oliveira Abinader Date: Mon, 4 Apr 2016 16:31:31 +0300 Subject: [build] Apply Makefile changes for {ios,isim,ibench} Prevents the following error output on Linux: Makefile:73: *** recipe commences before first target. Stop. --- Makefile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 34af404342..912feb13d8 100644 --- a/Makefile +++ b/Makefile @@ -67,15 +67,19 @@ iproj: Xcode/ios open ./build/ios-all/gyp/ios.xcodeproj .PHONY: ios ibench isim -ios ibench isim: export XCODEBUILD_ARGS += PROVISIONING_PROFILE="$$(PROVISIONING_PROFILE)" +ios ibench isim: + export XCODEBUILD_ARGS += PROVISIONING_PROFILE="$$(PROVISIONING_PROFILE)" -ios: export XCODEBUILD_ARGS += -sdk iphoneos ARCHS="arm64 armv7 armv7s" +ios: + export XCODEBUILD_ARGS += -sdk iphoneos ARCHS="arm64 armv7 armv7s" $(RUN) HOST=ios Xcode/iosapp -isim: export XCODEBUILD_ARGS += -sdk iphonesimulator ARCHS="x86_64 i386" +isim: + export XCODEBUILD_ARGS += -sdk iphonesimulator ARCHS="x86_64 i386" $(RUN) HOST=ios Xcode/iosapp -ibench: export XCODEBUILD_ARGS += -sdk iphoneos ARCHS="arm64" +ibench: + export XCODEBUILD_ARGS += -sdk iphoneos ARCHS="arm64" $(RUN) HOST=ios Xcode/ios-bench .PHONY: ipackage -- cgit v1.2.1