Files
Keychain/Makefile
bramkolkman b57041f0f7 Swift package
* Added the Keychain package
* Added a Makefile to easily build the package
* Added a Gitea pull request action
* Updated the README with additional information

Co-authored-by: Bram Kolkman <bramkolkman@thinkerium.com>
Reviewed-on: #1
2026-02-23 09:11:09 +00:00

14 lines
347 B
Makefile

.PHONY: build resolve clean
build:
@echo "Building Swift package 'Keychain'"
@swift build --package-path Keychain --scratch-path .build
resolve:
@echo "Resolving Swift package dependencies..."
@swift package resolve --package-path Keychain --scratch-path .build
clean:
@echo "Cleaning build artifacts..."
@rm -rf .build Keychain/.swiftpm