From 99675939680decde3b020246bfbf8c430e515d0f Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 22 May 2023 13:52:02 +0200 Subject: Add `clean` make target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit 1.4.1