mirror of
https://github.com/pezkuwichain/labels.git
synced 2026-04-21 23:37:58 +00:00
16 lines
255 B
Makefile
16 lines
255 B
Makefile
# List available commands
|
|
_default:
|
|
just --choose --chooser "fzf +s -x --tac --cycle"
|
|
|
|
help:
|
|
just --list
|
|
|
|
# Generate documentation
|
|
doc:
|
|
./scripts/build-doc.sh
|
|
|
|
# Generate the md book
|
|
book: doc
|
|
./scripts/generate_book.sh
|
|
open docs/book/index.html
|