git ssb

0+

Grey the earthling / gkn.me.uk



Commit b9e674f6a58e57b2bb9df216b779c9375cca9957

Avoid regenerating output when running `make clean`

The dependency `$(shell find output)` includes `output`, so we were regenerating `output` each time (not just depending on its contents).
Grey Nicholson committed on 5/15/2022, 5:26:22 PM
Parent: 2e74cea74f156ae84c36bd5c1f3cfe4d314e2e27

Files changed

Makefilechanged
MakefileView
@@ -23,9 +23,9 @@
2323 touch $@
2424
2525 clean: .cache/clean
2626
27-.cache/clean: $(shell find output)
27 +.cache/clean: $(shell find output/*)
2828 rm -r output
2929 touch $@
3030
3131 check-publish:

Built with git-ssb-web