From 6641d43dcbf86252a3cde11ef0d1c5079c8cd353 Mon Sep 17 00:00:00 2001 From: Kare Morstol Date: Thu, 12 May 2016 23:17:58 +0200 Subject: [PATCH] Update makefile to use currently selected toolchain. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8ebe9bd..ad9780d 100644 --- a/Makefile +++ b/Makefile @@ -8,10 +8,10 @@ endif .PHONY: build test clean build: - @xcodebuild | ${BUILDCLEANER} + @xcodebuild TOOLCHAINS=swift | ${BUILDCLEANER} test: build - @xcodebuild test -scheme SwiftShell | ${TESTCLEANER} + @xcodebuild TOOLCHAINS=swift -scheme SwiftShell test | ${TESTCLEANER} @echo @echo "=== RUN SwiftShell TEST SCRIPTS (SwiftShellTests/Scripts/runtests.bash) ==="