summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-02-11 20:22:31 -0800
committerFuwn <[email protected]>2025-02-11 20:22:31 -0800
commitd76c9a3fd9cfcf841d29c320390ed153e3d680cf (patch)
treeb08ecbd1553b1d821f4fa8a14838d0e9545b93ad /Makefile
parentchore(Git): Ignore xcodebuild artifacts (diff)
downloadswift502-main.tar.xz
swift502-main.zip
chore(Make): Add clean and build tasksHEADmain
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files 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
+