diff --git a/Makefile b/Makefile index fe8c794..2144d34 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,14 @@ override platform?=${DOCKER_IMAGE_PLATFORM} override config?=${SWIFT_BUILD_CONFIGURATION} override clean?=${DOCKER_IMAGE_CLEAN} +# --- IDE --- + +xcode: ## Open this package in Xcode. + @open -a Xcode Package.swift + +vscode: ## Open this package with Visual Studio Code. + @code . + # --- DEPENDENCIES --- outdated: ## List the package dependencies that can be updated. @@ -70,11 +78,6 @@ 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.