From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: [PATCH 4 of 4] tools: remove some .o and binary files on clean Date: Thu, 31 Mar 2011 11:57:00 +0100 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com Cc: Ian Campbell List-Id: xen-devel@lists.xenproject.org # HG changeset patch # User Ian Campbell # Date 1301568860 -3600 # Node ID dcc9d9a5fb46bf4f2e08fcda78526b18367f8b8b # Parent 25e25665f03db5012283e4dc5957d6aa69a30ddf tools: remove some .o and binary files on clean Signed-off-by: Ian Campbell diff -r 25e25665f03d -r dcc9d9a5fb46 tools/xenmon/Makefile --- a/tools/xenmon/Makefile Thu Mar 31 11:54:20 2011 +0100 +++ b/tools/xenmon/Makefile Thu Mar 31 11:54:20 2011 +0100 @@ -36,7 +36,9 @@ install: build .PHONY: clean clean: - rm -f $(DEPS) + $(RM) -f $(DEPS) + $(RM) -f xenbaked xenbaked.o + $(RM) -f xentrace_setmake setmask.o xenbaked: xenbaked.o Makefile $(CC) $(LDFLAGS) $< -o $@ $(LDLIBS) diff -r 25e25665f03d -r dcc9d9a5fb46 tools/xenpmd/Makefile --- a/tools/xenpmd/Makefile Thu Mar 31 11:54:20 2011 +0100 +++ b/tools/xenpmd/Makefile Thu Mar 31 11:54:20 2011 +0100 @@ -16,7 +16,7 @@ install: all .PHONY: clean clean: - $(RM) -f xenpmd $(DEPS) + $(RM) -f xenpmd xenpmd.o $(DEPS) xenpmd: xenpmd.o Makefile $(CC) $(LDFLAGS) $< -o $@ $(LDLIBS)