blob: b16a580d4287ec6d562703ab8d5de8619a7ca506 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
build:
sh ./barf
rsync -r public/ build/public
clean:
rm -rf build/*
watch:
while true; do \
ls -d .git/* * posts/* pages/* header.html | entr -cd make ;\
done
.PHONY: build clean watch
|