X-Git-Url: https://git.r.bdr.sh/rbdr/lyricli/blobdiff_plain/169297c8e8464ca0cf600e9e426f11d170ee169d..2cbb0a97eeb4eea8ef18d59346759b20cc8fa180:/Makefile diff --git a/Makefile b/Makefile index 34eec3a..3066e11 100644 --- 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