diff options
author | Stefan Hajnoczi <stefanha@redhat.com> | 2013-01-15 08:47:26 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-01-17 07:32:54 -0600 |
commit | 781c0c3321d2bda9a9d7ffe9bf51560f0987b5a0 (patch) | |
tree | 13a10bab5033f0031bdde3e7f080b91c95d223c0 | |
parent | a4cbfe24e4d9f86622ba81b8c5b599c92c682fbc (diff) | |
download | hqemu-781c0c3321d2bda9a9d7ffe9bf51560f0987b5a0.zip hqemu-781c0c3321d2bda9a9d7ffe9bf51560f0987b5a0.tar.gz |
Makefile: drop recursive libcacard clean
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>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |