diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bea475a --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +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