From: "Steven Rostedt (VMware)" <rostedt@xxxxxxxxxxx> "make clean" was leaving behind libtracefs.so.0, in the lib/tracefs directory. Add $(bdir)/*.so.* to the remove line to catch these files as well. Signed-off-by: Steven Rostedt (VMware) <rostedt@xxxxxxxxxxx> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index be57682d37c9..5d11abc82e6a 100644 --- a/Makefile +++ b/Makefile @@ -285,7 +285,7 @@ $(bdir)/libtracefs.so.$(TRACEFS_VERSION): force clean: $(MAKE) -C $(src)/utest clean $(MAKE) -C $(src)/src clean - $(RM) $(TARGETS) $(bdir)/*.a $(bdir)/*.so $(bdir)/*.o $(bdir)/.*.d + $(RM) $(TARGETS) $(bdir)/*.a $(bdir)/*.so $(bdir)/*.so.* $(bdir)/*.o $(bdir)/.*.d $(RM) $(PKG_CONFIG_FILE) .PHONY: clean -- 2.28.0