Add Makefile to code base

This commit is contained in:
Christian Wolf 2023-01-21 20:30:30 +01:00
parent 453ff3ae15
commit fada6a77ab

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
HUGO_PARAMS = -D
all:
build:
hugo ${HUGO_PARAMS}
tarball: build
tar czf page.tar.gz -C public .
.PHONY: tarball build