21 lines
222 B
Makefile
21 lines
222 B
Makefile
# show all recipes
|
|
default:
|
|
just --list
|
|
|
|
# build
|
|
build:
|
|
make build
|
|
|
|
# watch for changes
|
|
watch:
|
|
ls content/*.md | entr make build
|
|
|
|
# upload
|
|
up:
|
|
echo "TODO"
|
|
|
|
# clean dist
|
|
clean:
|
|
rm -rf dist/*
|
|
touch dist/.gitkeep
|