From 1c879809cf22ed1caf8f477c5877e52c84cba316 Mon Sep 17 00:00:00 2001 From: Christian Göttsche Date: Tue, 16 Jan 2024 15:23:02 +0100 Subject: doc: do not clean bootstrapped files The two files custom-html.xsl and custom-man.xsl are created at configure time. Only delete them on `make distclean` instead of `make clean` to be able to re-generate manual pages afterwards. Fixes: b285afe0ea45 ("doc: remove generated files during cleanup") --- doc/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/Makefile.am b/doc/Makefile.am index cfa7b5e8..88287cf5 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -4,7 +4,8 @@ SUBDIRS = man specs sag adg mwg -CLEANFILES = *~ custom-html.xsl custom-man.xsl +CLEANFILES = *~ +DISTCLEANFILES = custom-html.xsl custom-man.xsl dist_html_DATA = index.html -- cgit v1.2.3