12 lines
196 B
Makefile
12 lines
196 B
Makefile
# list all
|
|
default:
|
|
just --list --unsorted
|
|
|
|
# make html from markdown
|
|
html:
|
|
pandoc -f markdown -t html --toc -s -o index.html game.md
|
|
|
|
# watch for changes
|
|
watch:
|
|
ls game.md | entr just html
|