all repos — website @ 99675939680decde3b020246bfbf8c430e515d0f

My website

Add `clean` make target

Alan Pearce
commit

99675939680decde3b020246bfbf8c430e515d0f

parent

39d0a7949e306f3979f600f153721c9d27777abd

1 file changed, 4 insertions(+), 1 deletion(-)

changed files
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