From fada6a77ab3f93479bfad093227c959d82de4ec7 Mon Sep 17 00:00:00 2001 From: Christian Wolf Date: Sat, 21 Jan 2023 20:30:30 +0100 Subject: [PATCH] Add Makefile to code base --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile 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