voidcruiser.nl/Makefile

17 lines
216 B
Makefile

src := public
target := voidcruiser.nl
push: $(target)
rsync -ahv $(target) voidDroplet:/var/www/ --delete
$(target): build
mv $(src) $(target)
build:
hugo
clean:
rm -rf $(target)
.PHONY := build push clean