mirror of
https://github.com/zizmorcore/zizmor.git
synced 2025-12-23 08:47:33 +00:00
27 lines
678 B
Makefile
27 lines
678 B
Makefile
.PHONY: all
|
|
all:
|
|
@echo "Run my targets individually!"
|
|
|
|
.PHONY: site
|
|
site:
|
|
uv run --only-group docs mkdocs build
|
|
|
|
.PHONY: site-live
|
|
site-live:
|
|
uv run --only-group docs mkdocs serve
|
|
|
|
.PHONY: snippets
|
|
snippets: trophies sponsors
|
|
cargo run -- -h > docs/snippets/help.txt
|
|
|
|
.PHONY: trophies
|
|
trophies: docs/snippets/trophies.md
|
|
|
|
docs/snippets/trophies.md: docs/snippets/trophies.txt docs/snippets/render-trophies.py
|
|
uv run --no-project docs/snippets/render-trophies.py > $@
|
|
|
|
.PHONY: sponsors
|
|
sponsors: docs/snippets/sponsors.html
|
|
|
|
docs/snippets/sponsors.html: docs/snippets/sponsors.json docs/snippets/render-sponsors.py
|
|
uv run --no-project docs/snippets/render-sponsors.py > $@
|