Files
Keychain/Makefile
Bram Kolkman e31c6b3038 Keychain package
* Added the Keychain package
* Added a Makefile to easily build the package
* Updated the README with additional information
2026-02-20 16:29:50 +01: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