blob: 2069d8f3dff0c08038e7f1245796eca32806e3db (
plain) (
tree)
|
|
build:
./blarg
# rsync -r public/ build/public
clean:
rm -rf build/*
watch:
while true; do \
ls -d .git/* * posts/* pages/* header.html | entr -cd make ;\
done
deploy:
rsync -rv --exclude '*.tsv' ~/Git/blarg/build/ ~/Git/pages/
.PHONY: build clean watch deploy
|