haunt/justfile
2025-03-10 10:21:56 -04:00

25 lines
237 B
Makefile

set quiet
# list all recipes
default:
just --list --unsorted
# build html
html:
ninja html
# build pdf
pdf:
ninja pdf
# build epub
epub:
echo TODO
# build all
all: html pdf epub
# remove built files
clean:
ninja -t clean