[PATCH -perfbook 2/2] Don't remove $(SVG_GENERATED) in 'make clean'
Akira Yokosawa <[email protected]> Sat, 1 Jun 2024 11:54:47 +0900
| Newsgroups | org.kernel.vger.perfbook |
|---|---|
| Message-ID | <[email protected]> |
"make clean" is supposed to remove files generated by running pdflatex,
not those generated in the earlier stages, such as *.eps, *.pdf, *.fcv,
and so on.
It was a mistake in commit dac608ac4e69 ("Plot RCU-test-ratio
on-the-fly") which listed $(SVG_GENERATED) in "clean".
Fix it.
Fixes: dac608ac4e69 ("Plot RCU-test-ratio on-the-fly")
Signed-off-by: Akira Yokosawa <[email protected]>
---
Makefile | 1 -
1 file changed, 1 deletion(-)
diff --git a/Makefile b/Makefile
index dc8fceec..762df051 100644
--- a/Makefile
+++ b/Makefile
@@ -654,7 +654,6 @@ clean:
rm -f perfbook*.sil
rm -f CodeSamples/snippets.d
rm -f *.synctex*
- rm -f $(SVG_GENERATED)
@rm -f $(OBSOLETE_FILES) $(EPSSOURCES_TMP) $(SVG_EMERGENCY)
paper-clean:
--
2.34.1