wb5/Makefile
2023-05-14 13:20:25 -04:00

17 lines
241 B
Makefile

build:
./barf
rsync -r public/ build/public
deploy: build
rsync -r build/ ${OUTPUT}
clean:
rm -rf build/*
watch:
while true; do \
ls -d .git/* * posts/* pages/* header.html | entr -cd make ;\
done
.PHONY: build deploy clean watch