From: Ian Jackson Date: Wed, 14 Sep 2022 09:56:13 +0000 (+0100) Subject: Makefile: clean: Do not run cargo clean by default X-Git-Tag: hippotat/1.0.0~76 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=f431b0bfd4ba270eaf52b3a8686609116bd39a8e;p=hippotat.git Makefile: clean: Do not run cargo clean by default cargo clean isn't really the same thing. Building Rust is's so slow we have to reuse cargo's cached builds. Signed-off-by: Ian Jackson --- diff --git a/Makefile b/Makefile index 5f6c955..77a98e3 100644 --- a/Makefile +++ b/Makefile @@ -55,6 +55,8 @@ docs/html/index.html: docs/conf.py $(wildcard docs/*.md docs/*.rst docs/*.png) clean: rm -rf stamp/* doc/html + +very-clean: clean $(NAILING_CARGO) clean .PHONY: cargo-build all doc clean