aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 789183d52f51605d5c71c14ca4756a2bfb06449c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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:
	rsync -arv --exclude '*.tsv' ~/Git/blarg/build/ ~/Git/pages/


.PHONY: build clean watch deploy