summaryrefslogtreecommitdiff
path: root/Makefile
blob: ae12892546a1e80f360c9eda4cefe6824f66e17e (plain)
1
2
3
4
5
6
7
8
9
10
compile:
	hugo

dev:
	hugo server -D

deploy: compile
	rsync -v -P -a --delete public/ marx:/var/www/html/

.PHONY: compile dev deploy