From d76c9a3fd9cfcf841d29c320390ed153e3d680cf Mon Sep 17 00:00:00 2001 From: Fuwn Date: Tue, 11 Feb 2025 20:22:31 -0800 Subject: chore(Make): Add clean and build tasks --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a61b92d..2eb7c02 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ -.PHONY: default lint format +.PHONY: default lint format clean build -default: format lint +default: format lint build format: swiftformat . @@ -8,3 +8,9 @@ format: lint: swiftlint +clean: + xcodebuild clean + +build: + xcodebuild -configuration Release clean build + -- cgit v1.2.3