website/Makefile
2023-09-01 23:41:06 -06:00

13 lines
221 B
Makefile

host = minimally.online
build: content/* templates/* config.toml web.json
rm -rf build
kiln build
publish: build
rsync -ru build/html/ $(host):/srv/html/
rsync -ru build/gmi/ $(host):/srv/gmi/
clean:
rm -rf build