mikroblogi/Makefile
Juhani Krekelä fcca32055b make deploy
2026-03-16 19:59:51 +02:00

13 lines
159 B
Makefile

all:
haunt build
serve: all
haunt serve -w
deploy: all
rsync -avhP site/nortti/ ahti.space:microblog/
clean:
rm -r site
.PHONY: all serve deploy clean