WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

Re: [Xen-devel] [PATCH] tools: remove some .o and binary files on clean

To: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx>
Subject: Re: [Xen-devel] [PATCH] tools: remove some .o and binary files on clean
From: Ian Campbell <Ian.Campbell@xxxxxxxxxxxxx>
Date: Fri, 1 Apr 2011 11:26:56 +0100
Cc: "xen-devel@xxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxx>
Delivery-date: Fri, 01 Apr 2011 03:28:27 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
In-reply-to: <19860.48961.681836.546816@xxxxxxxxxxxxxxxxxxxxxxxx>
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Organization: Citrix Systems, Inc.
References: <d7d3aabffa1b70955ba3.1300898987@xxxxxxxxxxxxxxxxxxxxx> <19860.48961.681836.546816@xxxxxxxxxxxxxxxxxxxxxxxx>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
On Thu, 2011-03-31 at 18:52 +0100, Ian Jackson wrote:
> Ian Campbell writes ("[Xen-devel] [PATCH] tools: remove some .o and binary 
> files on clean"):
> > 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
> 
> This patch is against something subtly different to xen-unstable.hg.
> 
> xen-unstable.hg contains this:
> 
> | clean:
> |         rm -f $(BIN) $(DEPS)
> |
> |
> | %: %.c Makefile
> 
> Differences include: presence of $(BIN) rather than two consecutive
> spaces, and one or two blank lines.

It depends on "tools: remove pattern matched linking rules", which
you've now applied I think. I guess this patch should have been part of
that little series, sorry for that.

Ian.



_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>
  • Re: [Xen-devel] [PATCH] tools: remove some .o and binary files on clean, Ian Campbell <=