13 lines
159 B
Makefile
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
|