11 lines
206 B
Makefile
11 lines
206 B
Makefile
|
list:
|
||
|
@echo "Available targets:"
|
||
|
@echo "- build"
|
||
|
@echo "- deploy"
|
||
|
|
||
|
build:
|
||
|
zola build
|
||
|
|
||
|
deploy: build
|
||
|
rsync -avzhP --delete public/ hardforze.binarytrance.com:infrastructure/volumes/www/rsspls.7bit.org/
|