From owner-svn-src-all@FreeBSD.ORG Sat Mar 12 12:26:34 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1233) id AFB3F1065672; Sat, 12 Mar 2011 12:26:34 +0000 (UTC) Date: Sat, 12 Mar 2011 12:26:34 +0000 From: Alexander Best To: John Baldwin Message-ID: <20110312122634.GA74320@freebsd.org> References: <201103111311.p2BDBFBs079174@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201103111311.p2BDBFBs079174@svn.freebsd.org> Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r219483 - head/sys/boot/i386/gptboot X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Mar 2011 12:26:34 -0000 On Fri Mar 11 11, John Baldwin wrote: > Author: jhb > Date: Fri Mar 11 13:11:15 2011 > New Revision: 219483 > URL: http://svn.freebsd.org/changeset/base/219483 > > Log: > Remove all object files during 'make clean'. thanks. :) > > PR: kern/154888 > Submitted by: arundel > MFC after: 1 week > > Modified: > head/sys/boot/i386/gptboot/Makefile > > Modified: head/sys/boot/i386/gptboot/Makefile > ============================================================================== > --- head/sys/boot/i386/gptboot/Makefile Fri Mar 11 12:12:35 2011 (r219482) > +++ head/sys/boot/i386/gptboot/Makefile Fri Mar 11 13:11:15 2011 (r219483) > @@ -65,7 +65,8 @@ gptldr.bin: gptldr.out > gptldr.out: gptldr.o > ${LD} ${LDFLAGS} -e start -Ttext ${ORG1} -o ${.TARGET} gptldr.o > > -CLEANFILES+= gptboot.bin gptboot.out gptboot.o sio.o ufsread.o > +CLEANFILES+= gptboot.bin gptboot.out gptboot.o sio.o gpt.o crc32.o drv.o \ > + cons.o util.o > > gptboot.bin: gptboot.out > objcopy -S -O binary gptboot.out ${.TARGET} -- a13x