From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: [PATCH] tools: remove some .o and binary files on clean Date: Wed, 23 Mar 2011 16:49:47 +0000 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: 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 1300898687 0 # Node ID d7d3aabffa1b70955ba347cfbe3869b9461374ee # Parent 185126e8a8137b273b2d65c368f0836d8c6e461d tools: remove some .o and binary files on clean Signed-off-by: Ian Campbell diff -r 185126e8a813 -r d7d3aabffa1b tools/xenmon/Makefile --- a/tools/xenmon/Makefile Wed Mar 23 16:30:00 2011 +0000 +++ b/tools/xenmon/Makefile Wed Mar 23 16:44:47 2011 +0000 @@ -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 185126e8a813 -r d7d3aabffa1b tools/xenpmd/Makefile --- a/tools/xenpmd/Makefile Wed Mar 23 16:30:00 2011 +0000 +++ b/tools/xenpmd/Makefile Wed Mar 23 16:44:47 2011 +0000 @@ -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)