blob: 817ab0832e66a94fc92ad059d432a224f337b86c (
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: build
.PHONY: build clean watch deploy
|