Files
linux-apfs/drivers/base/Makefile
T

20 lines
543 B
Makefile
Raw Normal View History

2005-04-16 15:20:36 -07:00
# Makefile for the Linux device tree
obj-y := core.o sys.o bus.o dd.o \
driver.o class.o platform.o \
2005-04-16 15:20:36 -07:00
cpu.o firmware.o init.o map.o dmapool.o \
2007-01-20 16:00:26 +09:00
dma-mapping.o devres.o \
2005-04-16 15:20:36 -07:00
attribute_container.o transport_class.o
obj-y += power/
2006-06-06 23:54:02 +02:00
obj-$(CONFIG_ISA) += isa.o
2005-04-16 15:20:36 -07:00
obj-$(CONFIG_FW_LOADER) += firmware_class.o
obj-$(CONFIG_NUMA) += node.o
obj-$(CONFIG_MEMORY_HOTPLUG_SPARSE) += memory.o
2006-02-03 03:04:36 -08:00
obj-$(CONFIG_SMP) += topology.o
obj-$(CONFIG_SYS_HYPERVISOR) += hypervisor.o
2005-04-16 15:20:36 -07:00
ifeq ($(CONFIG_DEBUG_DRIVER),y)
EXTRA_CFLAGS += -DDEBUG
endif