aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-04-23 02:24:39 -0700
committerFuwn <[email protected]>2025-04-23 02:24:39 -0700
commitd725449e26e1265c5c131e4b51f2970b8e0c7591 (patch)
tree675d1251535cc6b4343bc0a6c99af1e86d58c497
parentfeat(HoloBarApp): Add more avatar fallback levels (diff)
downloadholobar-d725449e26e1265c5c131e4b51f2970b8e0c7591.tar.xz
holobar-d725449e26e1265c5c131e4b51f2970b8e0c7591.zip
build: Swap Make for just
-rw-r--r--.gitignore2
-rw-r--r--Makefile16
-rw-r--r--justfile15
3 files changed, 17 insertions, 16 deletions
diff --git a/.gitignore b/.gitignore
index 528642a..5623a01 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,3 +15,5 @@ build/
# Other
.DS_Store
+*.just
+
diff --git a/Makefile b/Makefile
deleted file mode 100644
index bb980c2..0000000
--- a/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-.PHONY: default lint format clean build
-
-default: format lint build
-
-format:
- swiftformat .
-
-lint:
- swiftlint
-
-clean:
- xcodebuild clean
-
-build:
- xcodebuild -configuration Release -scheme HoloBar clean build
-
diff --git a/justfile b/justfile
new file mode 100644
index 0000000..5053c68
--- /dev/null
+++ b/justfile
@@ -0,0 +1,15 @@
+import? 'xcode.just'
+
+target := 'HoloBar'
+
+fetch:
+ curl https://raw.githubusercontent.com/Fuwn/justfiles/refs/heads/main/xcode.just > xcode.just
+
+format:
+ just _format {{target}}
+
+build:
+ just _build {{target}}
+
+open:
+ just _open {{target}}