all repos — website @ 99675939680decde3b020246bfbf8c430e515d0f

My website

Add `clean` make target
Alan Pearce alan@alanpearce.eu
Mon, 22 May 2023 13:52:02 +0200
commit

99675939680decde3b020246bfbf8c430e515d0f

parent

39d0a7949e306f3979f600f153721c9d27777abd

1 files changed, 4 insertions(+), 1 deletions(-)

jump to
M MakefileMakefile
@@ -11,6 +11,9 @@ 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 @@ 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