buildsys: fix PVE make clean target

There was a long time mishap, that while stemming from another commit
is quite definitively a mental hiccup presented due to the changes
from commit 05a31bf ("makefile: convert to use simple parenthesis")
being done a bit to eagerly and then committed as two separate
commits.

Fixes: 864b236 ("buildsys: rework doc-gen cleanup and makefile inclusion")
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2025-06-02 20:37:55 +02:00
parent 00f25e13b8
commit 1daa93924b

View file

@ -61,6 +61,6 @@ IPCC.so: IPCC.o
.PHONY: clean
clean:
rm -f *.xml.tmp *.1 *.5 *.8 *(synopsis,opts).adoc docinfo.xml
rm -f *.xml.tmp *.1 *.5 *.8 *{synopsis,opts}.adoc docinfo.xml
rm -f IPCC.so IPCC.o IPCC.c pvecm.bash-completion pvecm.zsh-completion
for d in $(SUBDIRS); do $(MAKE) -C $$d clean; done