aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 30e82be32d53b5633b145e2fe93cb68870f91442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
build:
	sh ./barf
	rsync -r public/ build/public
	rsync style.css build/style.css

clean:
	rm -rf build/*

watch:
	while true; do \
	ls -d .git/* * posts/* pages/* header.html | entr -cd make ;\
	done

.PHONY: build clean watch