From: Juergen Gross Date: Thu, 7 Jan 2016 08:25:01 +0000 (+0100) Subject: tools: add distclean target to libs/toollog Makefile X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~2006 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6884e2b727047583a7953d898d8acb06b0f4dd0f;p=xen.git 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 --- 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