Added the "xcode" target to open this project with Xcode in the Makefile file.

This commit is contained in:
Javier Cicchelli 2023-04-28 14:45:54 +02:00
parent 4cbdb135e7
commit 9465a985af

View File

@ -65,6 +65,11 @@ flush-images: ## Flush all outstanding Swift docker images.
@docker images \ @docker images \
--all | grep ${DOCKER_IMAGE_NAME} | awk '{print $$3}' | xargs docker rmi --force --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 --- # --- HELP ---
# Outputs the documentation for each of the defined tasks when `help` is called. # Outputs the documentation for each of the defined tasks when `help` is called.