Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # Makefile for the Linux device tree |
| 2 | |
Greg Kroah-Hartman | e9c688a | 2012-01-22 14:31:15 -0700 | [diff] [blame] | 3 | obj-y := core.o bus.o dd.o syscore.o \ |
gregkh@suse.de | cd987d3 | 2005-03-23 11:12:38 -0800 | [diff] [blame] | 4 | driver.o class.o platform.o \ |
Heiko Carstens | 411f0f3 | 2007-05-06 14:49:09 -0700 | [diff] [blame] | 5 | cpu.o firmware.o init.o map.o devres.o \ |
Ben Hutchings | ccbc60d | 2011-11-24 07:04:39 +0000 | [diff] [blame] | 6 | attribute_container.o transport_class.o \ |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 7 | topology.o sys.o |
Kay Sievers | 2b2af54 | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 8 | obj-$(CONFIG_DEVTMPFS) += devtmpfs.o |
Marek Szyprowski | 55bb033 | 2011-12-29 13:09:51 +0100 | [diff] [blame] | 9 | obj-$(CONFIG_CMA) += dma-contiguous.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | obj-y += power/ |
Matthew Wilcox | 141e9d4 | 2007-12-03 11:57:48 -0500 | [diff] [blame] | 11 | obj-$(CONFIG_HAS_DMA) += dma-mapping.o |
Ming Lei | a56af87 | 2009-07-12 21:44:55 +0800 | [diff] [blame] | 12 | obj-$(CONFIG_HAVE_GENERIC_DMA_COHERENT) += dma-coherent.o |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 13 | obj-$(CONFIG_DMA_SHARED_BUFFER) += dma-buf.o |
Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 14 | obj-$(CONFIG_GENLOCK) += genlock.o |
Rene Herman | a5117ba7 | 2006-06-06 23:54:02 +0200 | [diff] [blame] | 15 | obj-$(CONFIG_ISA) += isa.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | obj-$(CONFIG_FW_LOADER) += firmware_class.o |
| 17 | obj-$(CONFIG_NUMA) += node.o |
Keith Mannthey | 5394702 | 2006-09-30 23:27:08 -0700 | [diff] [blame] | 18 | obj-$(CONFIG_MEMORY_HOTPLUG_SPARSE) += memory.o |
Randy Dunlap | 92b4214 | 2007-12-31 10:05:43 -0800 | [diff] [blame] | 19 | ifeq ($(CONFIG_SYSFS),y) |
Greg Kroah-Hartman | c63469a | 2007-11-28 12:23:18 -0800 | [diff] [blame] | 20 | obj-$(CONFIG_MODULES) += module.o |
Randy Dunlap | 92b4214 | 2007-12-31 10:05:43 -0800 | [diff] [blame] | 21 | endif |
Michael Holzheu | 4039483 | 2006-05-09 12:53:49 +0200 | [diff] [blame] | 22 | obj-$(CONFIG_SYS_HYPERVISOR) += hypervisor.o |
Mark Brown | b83a313 | 2011-05-11 19:59:58 +0200 | [diff] [blame] | 23 | obj-$(CONFIG_REGMAP) += regmap/ |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 24 | obj-$(CONFIG_SOC_BUS) += soc.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 26 | obj-$(CONFIG_SYNC) += sync.o |
Erik Gilling | 560b546 | 2012-04-18 13:43:22 -0700 | [diff] [blame] | 27 | obj-$(CONFIG_SW_SYNC) += sw_sync.o |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 28 | |
matt mooney | 7a86808 | 2010-09-24 12:17:11 -0700 | [diff] [blame] | 29 | ccflags-$(CONFIG_DEBUG_DRIVER) := -DDEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |