From 98f89ee758e4d8586d702d515a704917db4de66d Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Wed, 18 Oct 2017 08:58:28 -0700 Subject: [PATCH] Make build a PHONY task This solves the issue where if someone is generating a xcodeproj to work on XcodeGen, and their build directories are local, this command would assume that it should only run if something in that directory is changed, which isn't the case, we want it to run all the time and for swiftpm to decide if something has changed. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 1aab87e7..3fc7958a 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,7 @@ install: build mkdir -p $(SHARE_PATH) cp -R $(CURRENT_PATH)/SettingPresets $(SHARE_PATH)/SettingPresets +.PHONY: build build: swift build --disable-sandbox -c release -Xswiftc -static-stdlib