From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GRRAX-0000P6-4c for qemu-devel@nongnu.org; Sun, 24 Sep 2006 06:25:05 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GRRAV-0000Oh-91 for qemu-devel@nongnu.org; Sun, 24 Sep 2006 06:25:04 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GRRAV-0000Oc-41 for qemu-devel@nongnu.org; Sun, 24 Sep 2006 06:25:03 -0400 Received: from [212.227.126.186] (helo=moutng.kundenserver.de) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GRREf-0006kb-4n for qemu-devel@nongnu.org; Sun, 24 Sep 2006 06:29:21 -0400 Received: from localhost ([127.0.0.1]) by localhost.localdomain with esmtp (Exim 4.62) (envelope-from ) id 1GRR9J-0001D5-47 for qemu-devel@nongnu.org; Sun, 24 Sep 2006 12:23:49 +0200 Message-ID: <45165CB4.5060304@mail.berlios.de> Date: Sun, 24 Sep 2006 12:23:48 +0200 From: Stefan Weil MIME-Version: 1.0 Subject: [Qemu-devel] [PATCH] Make with dependency checking Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This small patch adds dependency checking for QEMU make. So I no longer have to rebuild all after a cvs update... Regards Stefan diff -u -b -B -r1.128 Makefile.target --- Makefile.target 23 Sep 2006 17:40:57 -0000 1.128 +++ Makefile.target 24 Sep 2006 10:15:30 -0000 @@ -1,4 +1,5 @@ include config.mak +-include *.d TARGET_BASE_ARCH:=$(TARGET_ARCH) ifeq ($(TARGET_ARCH), x86_64) @@ -19,6 +20,7 @@ endif CFLAGS=-Wall -O2 -g -fno-strict-aliasing #CFLAGS+=-Werror +CFLAGS += -MMD LDFLAGS=-g LIBS= HELPER_CFLAGS=$(CFLAGS)