summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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
+