From 2e22626a5b994182a5c4990d042de1c3f73e47b3 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 13 Feb 2025 02:44:02 -0800 Subject: feat: Initial commit --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c04bba7 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +.PHONY: default lint format clean build + +default: format lint build + +format: + swiftformat . + +lint: + swiftlint + +clean: + xcodebuild clean + +build: + xcodebuild -configuration Release -scheme Tonbo clean build + -- cgit v1.2.3