mirror of
https://github.com/Cian-H/read_aconity_layers.git
synced 2025-12-22 18:31:56 +00:00
12 lines
305 B
Makefile
12 lines
305 B
Makefile
# Lists available just commands
|
|
default:
|
|
@just --list
|
|
|
|
# Documentation commands - delegates to docs/justfile
|
|
docs command *args:
|
|
cd docs && just {{command}} {{args}}
|
|
|
|
# Build README.rst based off the documentation site
|
|
build_readme:
|
|
cat docs/readme_top.rst docs/readme_bottom.rst > README.rst
|