voidcruiser-test.nl/Makefile

17 lines
223 B
Makefile
Raw Normal View History

2022-08-18 14:37:33 +02:00
src := public
target := voidcruiser.nl
push: $(target)
rsync -ahv $(target) voidDroplet:/var/www/ --delete
$(target): build
mv $(src) $(target)
build:
hugo
clean:
2022-08-18 15:28:04 +02:00
rm -rf $(src) $(target)
2022-08-18 14:37:33 +02:00
.PHONY := build push clean