summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2016-04-04 16:31:31 +0300
committerBruno de Oliveira Abinader <bruno@mapbox.com>2016-04-04 18:17:40 +0300
commit236b18b9f7631c15431978ec30571a555c15d16e (patch)
treeca4514ab96f0030ddd48ca86861e5b9ae76537d9 /Makefile
parent7a67250624214fa13fa687221c58fee8ffc1a1d5 (diff)
downloadqtlocation-mapboxgl-236b18b9f7631c15431978ec30571a555c15d16e.tar.gz
[build] Apply Makefile changes for {ios,isim,ibench}
Prevents the following error output on Linux: Makefile:73: *** recipe commences before first target. Stop.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 8 insertions, 4 deletions
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