From 9465a985afbc20bd5368feffa3f61f68b823963e Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Fri, 28 Apr 2023 14:45:54 +0200 Subject: [PATCH] Added the "xcode" target to open this project with Xcode in the Makefile file. --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 2834d9e..05465f7 100644 --- a/Makefile +++ b/Makefile @@ -65,6 +65,11 @@ flush-images: ## Flush all outstanding Swift docker images. @docker images \ --all | grep ${DOCKER_IMAGE_NAME} | awk '{print $$3}' | xargs docker rmi --force +# --- MISCELLANEOUS --- + +xcode: ## Open this package in Xcode. + @open -a Xcode Package.swift + # --- HELP --- # Outputs the documentation for each of the defined tasks when `help` is called.