blob: d3bf70fd889fab78bed6f9efdb5efda20eac01d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
compile: clean
hugo
clean:
[ ! -d public ] || rm -r public/
dev:
hugo server -D
deploy: compile
rsync -v -P -a --delete public/ marx:/var/www/html/
.PHONY: compile dev deploy
|