From d9e340c93c463b4204c09aabdfbddcf2d7572014 Mon Sep 17 00:00:00 2001 From: Danny Al-Gaaf Date: Tue, 21 Oct 2014 09:53:27 +0200 Subject: [PATCH] Makefile.am: remove also old *.o/lo files Make sure all no longer used/build *.o and *.lo files are removed on 'make clean' e.g. after moving files around in the src tree or Makefile. Signed-off-by: Danny Al-Gaaf --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index 270829c09c8..2526fb04418 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -714,7 +714,7 @@ ceph: ceph.in ./ceph_ver.h Makefile clean-local: rm -f *.so - find . -name '*.gcno' -o -name '*.gcda' -o -name '*.lcov' | xargs rm -f + find . -name '*.gcno' -o -name '*.gcda' -o -name '*.lcov' -o -name "*.o" -o -name "*.lo" | xargs rm -f rm -f ceph java/java/com/ceph/crush/Bucket.class -- 2.47.3