From 8136c88bc96167b8ceb6708ecf9af16517521760 Mon Sep 17 00:00:00 2001 From: Ben Chatelain Date: Wed, 21 Sep 2022 19:27:32 -0600 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Swift=20(5.7)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .swift-version | 2 +- Makefile | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.swift-version b/.swift-version index b7c7542..760606e 100644 --- a/.swift-version +++ b/.swift-version @@ -1 +1 @@ -5.6.1 +5.7 diff --git a/Makefile b/Makefile index 2c739ba..9b85b78 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PREFIX ?= /usr/local # Swift 5.3 # SWIFT_VERSION = swift-5.3-DEVELOPMENT-SNAPSHOT-2020-04-21-a -SWIFT_VERSION = 5.6.1 +SWIFT_VERSION = 5.7 # set EXECUTABLE_DIRECTORY according to your specific environment # run swift build and see where the output executable is created @@ -42,13 +42,10 @@ endif .PHONY: help help: MAKEFILE_FMT = " \033[36m%-25s\033[0m%s\n" help: ## (default) Displays this message - @echo "Ditto main Makefile." + @echo "mas Makefile" @echo "" @echo "Targets:" @grep -E '^[a-zA-Z0-9_-]*:.*?##' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?##"}; {printf $(MAKEFILE_FMT), $$1, $$2}' - @echo "" - @echo "Parameters:" - @grep -E '^[A-Z0-9_-]* ?\?=.*?##' $(MAKEFILE_LIST) | awk 'BEGIN {FS = " ?\\?=.*?##"}; {printf $(MAKEFILE_FMT), $$1, $$2}' : # Hacky way to display a newline ## ################################################################################