aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index f10d7a6..104306b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,15 @@
.POSIX:
-DESTDIR=public
+DESTDIR=public/
.PHONY: build
build: ## make build # builds an optimized version of the website in $(DESTDIR)
- @echo "? Generating site"
+ @echo "----- Generating site -----"
hugo --gc --minify --cleanDestinationDir -d $(DESTDIR)
.PHONY: clean
clean: ## make clean # removed all $(DESTDIR) contents
- @echo "? Cleaning old build"
+ @echo "----- Cleaning old build -----"
cd $(DESTDIR) && rm -rf *
.PHONY: serve