Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1161797AbXECIKy (ORCPT ); Thu, 3 May 2007 04:10:54 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1161479AbXECIKx (ORCPT ); Thu, 3 May 2007 04:10:53 -0400 Received: from pentafluge.infradead.org ([213.146.154.40]:59618 "EHLO pentafluge.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1161797AbXECIKN (ORCPT ); Thu, 3 May 2007 04:10:13 -0400 Date: Thu, 3 May 2007 09:10:11 +0100 From: Christoph Hellwig To: Stefan Richter Cc: Christoph Hellwig , linux-kernel@vger.kernel.org, Kristian H??gsberg , Linus Torvalds , Andrew Morton , linux1394-devel Subject: Re: [PATCH 6/6] firewire: add it all to kbuild Message-ID: <20070503081011.GD23000@infradead.org> Mail-Followup-To: Christoph Hellwig , Stefan Richter , linux-kernel@vger.kernel.org, Kristian H??gsberg , Linus Torvalds , Andrew Morton , linux1394-devel References: <20070502090007.GA28174@infradead.org> <20070502194442.GE1248@infradead.org> <46391834.2050209@s5r6.in-berlin.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <46391834.2050209@s5r6.in-berlin.de> User-Agent: Mutt/1.4.2.2i X-SRS-Rewrite: SMTP reverse-path rewritten from by pentafluge.infradead.org See http://www.infradead.org/rpr.html Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1156 Lines: 39 On Thu, May 03, 2007 at 01:01:08AM +0200, Stefan Richter wrote: > Christoph Hellwig wrote: > >> +fw-core-objs := fw-card.o fw-topology.o fw-transaction.o fw-iso.o \ > >> + fw-device.o fw-cdev.o > > > > fw-core-y += .. > > > > Like such? Exactly. > --- linux.orig/drivers/usb/core/Makefile > +++ linux/drivers/usb/core/Makefile > @@ -2,17 +2,12 @@ > # Makefile for USB Core files and filesystem > # > > -usbcore-objs := usb.o hub.o hcd.o urb.o message.o driver.o \ > +usbcore-y += usb.o hub.o hcd.o urb.o message.o driver.o \ > config.o file.o buffer.o sysfs.o endpoint.o \ > devio.o notify.o generic.o quirks.o > > -ifeq ($(CONFIG_PCI),y) > - usbcore-objs += hcd-pci.o > -endif > - > -ifeq ($(CONFIG_USB_DEVICEFS),y) > - usbcore-objs += inode.o devices.o > -endif > +usbcore-$(CONFIG_PCI) += hcd-pci.o > +usbcore-$(CONFIG_USB_DEVICEFS) += inode.o devices.o > > obj-$(CONFIG_USB) += usbcore.o - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/