]> git.r.bdr.sh - rbdr/lyricli/blobdiff - Makefile
Update clean command
[rbdr/lyricli] / Makefile
index 34eec3ac500784510e6f0cf64c0d4c0b2b801ea2..3066e117f8c07449ee80dc09644d43320c9fa956 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,22 @@ install: build
 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://gitlab.com/lyricli \
+               --github_url https://gitlab.com/lyricli/lyricli \
+               --module-version 0.4.0 \
+               --module Lyricli \
+
 clean:
-       swift build --clean
+       swift package clean
 
-.PHONY: build test clean
+.PHONY: build install test clean lint