1
0
Fork 0
bascht.com/Makefile

19 lines
425 B
Makefile

HUGO_VERSION="0.39"
HUGO_URL="https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_Linux-64bit.tar.gz"
default: hugo clean public
hugo:
curl -L $(HUGO_URL) > ./hugo.tar.gz
tar -xvf hugo.tar.gz
rm -f LICENSE.md README.md
preview: hugo
hugo server
public:
hugo
clean:
rm -rf public/
sync:
rsync -avz --delete --progress public/ uberspace-bascht:/var/www/virtual/bascht/bascht.com/