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.
This commit is contained in:
Keith Smiley 2017-10-18 08:58:28 -07:00
parent 1572938016
commit 98f89ee758
No known key found for this signature in database
GPG Key ID: 33BA60D44C7167F8

View File

@ -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