Blame view

drivers/base/Makefile 975 Bytes
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
  # Makefile for the Linux device tree
2a41e6070   Russell King   drivers/base: pro...
2
  obj-y			:= component.o core.o bus.o dd.o syscore.o \
cd987d38c   Greg Kroah-Hartman   [PATCH] class: re...
3
  			   driver.o class.o platform.o \
411f0f3ed   Heiko Carstens   Introduce CONFIG_...
4
  			   cpu.o firmware.o init.o map.o devres.o \
ccbc60d3e   Ben Hutchings   topology: Provide...
5
  			   attribute_container.o transport_class.o \
e6b5be2be   Linus Torvalds   Merge tag 'driver...
6
  			   topology.o container.o property.o cacheinfo.o
2b2af54a5   Kay Sievers   Driver Core: devt...
7
  obj-$(CONFIG_DEVTMPFS)	+= devtmpfs.o
f825c736e   Aneesh Kumar K.V   mm/cma: Move dma ...
8
  obj-$(CONFIG_DMA_CMA) += dma-contiguous.o
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
  obj-y			+= power/
141e9d4b5   Matthew Wilcox   Move dmapool.c to...
10
  obj-$(CONFIG_HAS_DMA)	+= dma-mapping.o
a56af8764   Ming Lei   driver-core: move...
11
  obj-$(CONFIG_HAVE_GENERIC_DMA_COHERENT) += dma-coherent.o
3a4955111   William Breathitt Gray   isa: Allow ISA-st...
12
  obj-$(CONFIG_ISA_BUS_API)	+= isa.o
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13
14
  obj-$(CONFIG_FW_LOADER)	+= firmware_class.o
  obj-$(CONFIG_NUMA)	+= node.o
53947027a   Keith Mannthey   [PATCH] hot-add-m...
15
  obj-$(CONFIG_MEMORY_HOTPLUG_SPARSE) += memory.o
92b421416   Randy Dunlap   driver core: fix ...
16
  ifeq ($(CONFIG_SYSFS),y)
c63469a39   Greg Kroah-Hartman   Driver core: move...
17
  obj-$(CONFIG_MODULES)	+= module.o
92b421416   Randy Dunlap   driver core: fix ...
18
  endif
4039483fd   Michael Holzheu   [PATCH] Driver Co...
19
  obj-$(CONFIG_SYS_HYPERVISOR) += hypervisor.o
b83a313bf   Mark Brown   regmap: Add gener...
20
  obj-$(CONFIG_REGMAP)	+= regmap/
74d1d82cd   Lee Jones   drivers/base: add...
21
  obj-$(CONFIG_SOC_BUS) += soc.o
ab78029ec   Linus Walleij   drivers/pinctrl: ...
22
  obj-$(CONFIG_PINCTRL) += pinctrl.o
833c95456   Johannes Berg   device coredump: ...
23
  obj-$(CONFIG_DEV_COREDUMP) += devcoredump.o
c09fcc4b2   Marc Zyngier   drivers/base: Add...
24
  obj-$(CONFIG_GENERIC_MSI_IRQ_DOMAIN) += platform-msi.o
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
25

7a868088e   matt mooney   driver-core: base...
26
  ccflags-$(CONFIG_DEBUG_DRIVER) := -DDEBUG
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
27