]> git.proxmox.com Git - qemu.git/commitdiff
Makefile: drop recursive libcacard clean
authorStefan Hajnoczi <stefanha@redhat.com>
Tue, 15 Jan 2013 07:47:26 +0000 (08:47 +0100)
committerAnthony Liguori <aliguori@us.ibm.com>
Thu, 17 Jan 2013 13:32:54 +0000 (07:32 -0600)
Commit eb8eb53e5846a957cf333f2e1ec8cb6e0c04 ("libcacard: rewrite
Makefile in non-recursive style") refactored libcacard/Makefile so it
can be included by the top-level Makefile.

The top-level clean target still loops over subdirectories, including
libcacard/, to invoke recursive clean.  Remove libcacard from the
recursive clean since its files are already included at the top level.

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Makefile

index cfa2fa63834d16ff929ecc1d773665cd5bbcab0c..73adf429d7d8b5ae29c30f65866c92298b1f13fe 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -227,7 +227,7 @@ clean:
        rm -rf qapi-generated
        rm -rf qga/qapi-generated
        $(MAKE) -C tests/tcg clean
-       for d in $(ALL_SUBDIRS) libcacard; do \
+       for d in $(ALL_SUBDIRS); do \
        if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
        rm -f $$d/qemu-options.def; \
         done