test: build
swift test
+lint:
+ cd Sources && swiftlint
+
+document: build
+ sourcekitten doc --spm-module $(source_binary_name) > $(build_path)/$(source_binary_name).json
+ jazzy \
+ -s $(build_path)/$(source_binary_name).json \
+ --readme README.md \
+ --clean \
+ --author Lyricli \
+ --author_url https://github.com/lyricli-app \
+ --github_url https://github.com/lyricli-app/lyricli \
+ --module-version 0.1.0 \
+ --module Lyricli \
+
clean:
swift build --clean
-.PHONY: build test clean
+.PHONY: build install test clean lint