voidcruiser-test.nl/Makefile
2022-08-18 15:28:04 +02:00

17 lines
223 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 $(src) $(target)
.PHONY := build push clean