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 \ |
| 7 | topology.o |
Kay Sievers | 2b2af54 | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 8 | obj-$(CONFIG_DEVTMPFS) += devtmpfs.o |
Marek Szyprowski | c64be2b | 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 |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 13 | obj-$(CONFIG_DMA_SHARED_BUFFER) += dma-buf.o reservation.o |
Rene Herman | a5117ba7 | 2006-06-06 23:54:02 +0200 | [diff] [blame] | 14 | obj-$(CONFIG_ISA) += isa.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | obj-$(CONFIG_FW_LOADER) += firmware_class.o |
| 16 | obj-$(CONFIG_NUMA) += node.o |
Keith Mannthey | 5394702 | 2006-09-30 23:27:08 -0700 | [diff] [blame] | 17 | obj-$(CONFIG_MEMORY_HOTPLUG_SPARSE) += memory.o |
Randy Dunlap | 92b4214 | 2007-12-31 10:05:43 -0800 | [diff] [blame] | 18 | ifeq ($(CONFIG_SYSFS),y) |
Greg Kroah-Hartman | c63469a | 2007-11-28 12:23:18 -0800 | [diff] [blame] | 19 | obj-$(CONFIG_MODULES) += module.o |
Randy Dunlap | 92b4214 | 2007-12-31 10:05:43 -0800 | [diff] [blame] | 20 | endif |
Michael Holzheu | 4039483 | 2006-05-09 12:53:49 +0200 | [diff] [blame] | 21 | obj-$(CONFIG_SYS_HYPERVISOR) += hypervisor.o |
Mark Brown | b83a313 | 2011-05-11 19:59:58 +0200 | [diff] [blame] | 22 | obj-$(CONFIG_REGMAP) += regmap/ |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 23 | obj-$(CONFIG_SOC_BUS) += soc.o |
Linus Walleij | ab78029 | 2013-01-22 10:56:14 -0700 | [diff] [blame] | 24 | obj-$(CONFIG_PINCTRL) += pinctrl.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
matt mooney | 7a86808 | 2010-09-24 12:17:11 -0700 | [diff] [blame] | 26 | ccflags-$(CONFIG_DEBUG_DRIVER) := -DDEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |