diff options
author | Thomas Huth <thuth@redhat.com> | 2024-09-02 17:47:49 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-09-11 09:49:11 +0200 |
commit | 1231bc7d12c373e445171dda9e7e5146eee7da55 (patch) | |
tree | 25e41d3c8f7e44e51d9ff5271ec1e9b548517553 /contrib | |
parent | c58156cd9f0a4ea2c99f64fa393e5fd67e1fc623 (diff) | |
download | qemu-1231bc7d12c373e445171dda9e7e5146eee7da55.zip qemu-1231bc7d12c373e445171dda9e7e5146eee7da55.tar.gz qemu-1231bc7d12c373e445171dda9e7e5146eee7da55.tar.bz2 |
contrib/plugins/Makefile: Add a 'distclean' target
Running "make distclean" in the build tree currently fails since this
tries to run the "distclean" target in the contrib/plugins/ folder, too,
but the Makefile there is missing this target. Thus add 'distclean' there
to fix this issue.
And to avoid regressions with "make distclean", add this command to one
of the build jobs, too.
Message-ID: <20240902154749.73876-1-thuth@redhat.com>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/plugins/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/plugins/Makefile b/contrib/plugins/Makefile index edf256c..05a2a45 100644 --- a/contrib/plugins/Makefile +++ b/contrib/plugins/Makefile @@ -77,7 +77,7 @@ lib%$(SO_SUFFIX): %.o endif -clean: +clean distclean: rm -f *.o *$(SO_SUFFIX) *.d rm -Rf .libs |