From 2d3766be89d05ffd89c8e9c0e15ecc789c5f7b27 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sun, 21 May 2023 11:42:21 +0200 Subject: [PATCH] buildsys: rework clean target, avoid doc-gen one 1. this really doesn't change often 2. the synopsis and opts should be in the owner repo anyway 3. the original one simply deleted all *.adoc files, far to aggressive Avoids pve-docs dependency for building the DSC (without having to pass the ugly no-pre-clean option). Signed-off-by: Thomas Lamprecht --- src/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index fefa157..987b4a8 100644 --- a/src/Makefile +++ b/src/Makefile @@ -50,5 +50,4 @@ test: .PHONY: clean distclean distclean: clean clean: - make cleanup-docgen - find . -name '*~' -exec rm {} ';' + rm -f *.xml.tmp *.1 *.5 *.8 *{synopsis,opts}.adoc docinfo.xml -- 2.39.2