From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kip Macy Subject: Xen TODO list console.o being re-compiled Date: Wed, 27 Apr 2005 21:59:45 -0700 Message-ID: Reply-To: Kip Macy Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Content-Disposition: inline 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 List-Id: xen-devel@lists.xenproject.org One of the trivial items on the xen TODO list is: "figure out why xen's console.c gets rebuilt every time" The answer is pretty obvious from the top-level makefile: # drivers/char/console.o may contain static banner/compile info. Blow it a= way. delete-unfresh-files: rm -f include/xen/banner.h include/xen/compile.h drivers/char/conso= le.o $(MAKE) -C arch/$(TARGET_ARCH) delete-unfresh-files where delete-unfresh-files is a dependency for $(TARGET): $(TARGET): delete-unfresh-files