From patchwork Wed Oct 2 16:46:00 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Uros Bizjak X-Patchwork-Id: 279834 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 12FF82C037F for ; Thu, 3 Oct 2013 02:46:09 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:date:message-id:subject:from:to:content-type; q= dns; s=default; b=DfN+e1YwU6JKj3HA65MFn1t0wyCb73yox1Oq5ZjjCFT7Fl j0Ykfe+J5TdMrVlXHZFJen+Z0q9XFRQYBB8qgUKjWywETpZ3kngmUwidnJKibX6z 9bCfVBfQbQdC3sdMMzrxPZn3fmBXFBkfeWAKux2naCywSxp4ffuMUamYbVNF4= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:date:message-id:subject:from:to:content-type; s= default; bh=MvnEdKfc+eWcEydeK99XA6QteBU=; b=LYiDbl4F7wH/XVJbFfZW tJe9UMadQSrnwJPmPqFGUnBfqYZTJTXvxoGQ2c7vXg70NJmydH4+w466Kc9Wy+iY K0GRYQ0w9CMxiTWwt4JBKYStIqA3+HWwaEs0ejUKhy55FnKgGLaSM/Q8sBzdUOwk TiMwV5PkIkWNNurrFzlY9co= Received: (qmail 7438 invoked by alias); 2 Oct 2013 16:46:03 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 7421 invoked by uid 89); 2 Oct 2013 16:46:03 -0000 Received: from mail-pb0-f52.google.com (HELO mail-pb0-f52.google.com) (209.85.160.52) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Wed, 02 Oct 2013 16:46:03 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, NO_RELAYS autolearn=ham version=3.3.2 X-HELO: mail-pb0-f52.google.com Received: by mail-pb0-f52.google.com with SMTP id wz12so1119204pbc.25 for ; Wed, 02 Oct 2013 09:46:00 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.68.192.195 with SMTP id hi3mr3704043pbc.18.1380732360376; Wed, 02 Oct 2013 09:46:00 -0700 (PDT) Received: by 10.70.129.145 with HTTP; Wed, 2 Oct 2013 09:46:00 -0700 (PDT) Date: Wed, 2 Oct 2013 18:46:00 +0200 Message-ID: Subject: [PATCH, build]: Update x-i386 and x-alpha for automatic dependencies From: Uros Bizjak To: "gcc-patches@gcc.gnu.org" Hello! 2013-10-02 Uros Bizjak * config/i386/x-i386 (driver-i386.o): Remove header dependencies. Use $(COMPILE) and $(POSTCOMPILE). * config/alpha/x-alpha (driver-alpha.o): Ditto. Bootstrapped on x86_64-pc-linux-gnu and alphaev68-pc-linux-gnu, committed to mainline SVN. Uros. Index: alpha/x-alpha =================================================================== --- alpha/x-alpha (revision 203117) +++ alpha/x-alpha (working copy) @@ -1,3 +1,3 @@ -driver-alpha.o: $(srcdir)/config/alpha/driver-alpha.c \ - $(CONFIG_H) $(SYSTEM_H) - $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< +driver-alpha.o: $(srcdir)/config/alpha/driver-alpha.c + $(COMPILE) $< + $(POSTCOMPILE) Index: i386/x-i386 =================================================================== --- i386/x-i386 (revision 203117) +++ i386/x-i386 (working copy) @@ -1,4 +1,3 @@ -driver-i386.o : $(srcdir)/config/i386/driver-i386.c \ - $(srcdir)/config/i386/cpuid.h \ - $(CONFIG_H) $(SYSTEM_H) $(TM_H) coretypes.h - $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< +driver-i386.o : $(srcdir)/config/i386/driver-i386.c + $(COMPILE) $< + $(POSTCOMPILE)