diff options
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 8a23811..d1f81b3 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,9 @@ zstd := zstd --force --no-pass-through -19 --quiet build: zola build --output-dir $(PREFIX) +clean: + rm -rf ./$(PREFIX) + to_compress := $(shell fd . $(PREFIX) --type=file -e html -e xml -e txt -e asc) brotli_files := $(patsubst %, %.br, $(to_compress)) gzip_files := $(patsubst %, %.gz, $(to_compress)) @@ -59,4 +62,4 @@ install: compress deploy: build compress rsync --archive --delete public/ pappel.alanpearce.eu:/srv/http/alanpearce.eu -.PHONY: all build compress install deploy +.PHONY: all clean build compress install deploy |