diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ee51da9 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +HUGO_PARAMS = -D + +all: + +build: + hugo ${HUGO_PARAMS} + +tarball: build + tar czf page.tar.gz -C public . + +.PHONY: tarball build