aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 118e9e6e8bc8aa48b5f91acac77cf1c4d582da7b (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 build ;\
	done

.PHONY: build clean watch