32 lines
448 B
Makefile
32 lines
448 B
Makefile
_default:
|
|
@just --unsorted --list
|
|
|
|
# Check project
|
|
check:
|
|
bc-check
|
|
|
|
# Format project
|
|
fmt:
|
|
bc-fmt
|
|
|
|
# Perform automated fixes
|
|
fix:
|
|
bc-fix
|
|
|
|
# Launch the editor
|
|
ed:
|
|
godot godot/project.godot
|
|
|
|
# Launch the game
|
|
run:
|
|
cargo build
|
|
godot --path godot
|
|
|
|
# mdbook serve
|
|
serve-docs:
|
|
mdbook serve docs
|
|
|
|
# Regenerate docs figures on changes
|
|
watch-figures:
|
|
watchexec --exts=py --restart --watch docs python3 docs/figures.py
|