Files
lespiedsdanslecode/Makefile
T
2020-10-11 00:40:36 +02:00

17 lines
333 B
Makefile

PANDOC := $(shell command -v pandoc 2> /dev/null)
all:
ifndef PANDOC
$(error "pandoc is not available please install pandoc")
endif
build: ## Construit le site
./pana.sh
deploy: ## déploie le site
git push && rsync -avz content/ elsif@ssh-elsif.alwaysdata.net:www/
run: ## démarre un serveur local
http-server content/