Make: avoid re-running format/compress targets
Alan Pearce alan@alanpearce.eu
Sat, 08 Jul 2023 20:17:24 +0200
2 files changed, 14 insertions(+), 10 deletions(-)
jump to
M Makefile → Makefile
@@ -4,17 +4,20 @@ .DELETE_ON_ERROR: PREFIX ?= public -brotli := brotli --force +brotli := brotli --force --no-copy-stat gzip := gzip --best --keep --force -zstd := zstd --force --no-pass-through -19 --quiet +zstd := zstd --force --no-pass-through -19 --quiet --stdout build: $(PREFIX)/index.html $(PREFIX)/index.html: config.toml content/**.md static/** templates/** themes/**/* zola build --force --output-dir $(PREFIX) -format: $(PREFIX) +format: .formatstamp + +.formatstamp: $(PREFIX)/index.html prettier --write --parser html --print-width 200 "$(PREFIX)/**/*.html" + @touch .formatstamp clean: rm -rf ./$(PREFIX) @@ -49,18 +52,18 @@ ${PREFIX}/%.asc.gz: ${PREFIX}/%.asc $(gzip) $< ${PREFIX}/%.html.zst: ${PREFIX}/%.html - $(zstd) $< + $(zstd) $< > $@ ${PREFIX}/%.xml.zst: ${PREFIX}/%.xml - $(zstd) $< + $(zstd) $< > $@ ${PREFIX}/%.txt.zst: ${PREFIX}/%.txt - $(zstd) $< + $(zstd) $< > $@ ${PREFIX}/%.asc.zst: ${PREFIX}/%.asc - $(zstd) $< + $(zstd) $< > $@ -compress: $(brotli_files) $(gzip_files) $(zstd_files) +compress: .formatstamp $(brotli_files) $(gzip_files) $(zstd_files) install: compress @@ -68,6 +71,6 @@ deploy: .deploystamp .deploystamp: build format compress fly deploy - touch .deploystamp + @touch .deploystamp -.PHONY: all clean build format compress install deploy +.PHONY: all clean build install deploy