From 6884e2b727047583a7953d898d8acb06b0f4dd0f Mon Sep 17 00:00:00 2001 From: Juergen Gross Date: Thu, 7 Jan 2016 09:25:01 +0100 Subject: [PATCH] tools: add distclean target to libs/toollog Makefile The new logging library Makefile doesn't support the distclean target. Add it. Also remove all created shared library versions via the clean target. Signed-off-by: Juergen Gross Acked-by: Ian Campbell --- tools/libs/toollog/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/libs/toollog/Makefile b/tools/libs/toollog/Makefile index bd12403ed7..9bfd179ed8 100644 --- a/tools/libs/toollog/Makefile +++ b/tools/libs/toollog/Makefile @@ -57,3 +57,7 @@ TAGS: .PHONY: clean clean: rm -rf *.rpm $(LIB) *~ $(DEPS) $(LIB_OBJS) $(PIC_OBJS) + rm -f libxentoollog.so.$(MAJOR).$(MINOR) libxentoollog.so.$(MAJOR) + +.PHONY: distclean +distclean: clean -- 2.30.2