xref: /linux-6.3-rc2/drivers/base/Makefile
  • Home
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • current directory
1# SPDX-License-Identifier: GPL-2.0
2# Makefile for the Linux device tree
3
4obj-y			:= component.o core.o bus.o dd.o syscore.o \
5			   driver.o class.o platform.o \
6			   cpu.o firmware.o init.o map.o devres.o \
7			   attribute_container.o transport_class.o \
8			   topology.o container.o property.o cacheinfo.o \
9			   swnode.o
10obj-$(CONFIG_AUXILIARY_BUS) += auxiliary.o
11obj-$(CONFIG_DEVTMPFS)	+= devtmpfs.o
12obj-y			+= power/
13obj-$(CONFIG_ISA_BUS_API)	+= isa.o
14obj-y				+= firmware_loader/
15obj-$(CONFIG_NUMA)	+= node.o
16obj-$(CONFIG_MEMORY_HOTPLUG) += memory.o
17ifeq ($(CONFIG_SYSFS),y)
18obj-$(CONFIG_MODULES)	+= module.o
19endif
20obj-$(CONFIG_SYS_HYPERVISOR) += hypervisor.o
21obj-$(CONFIG_REGMAP)	+= regmap/
22obj-$(CONFIG_SOC_BUS) += soc.o
23obj-$(CONFIG_PINCTRL) += pinctrl.o
24obj-$(CONFIG_DEV_COREDUMP) += devcoredump.o
25obj-$(CONFIG_GENERIC_MSI_IRQ) += platform-msi.o
26obj-$(CONFIG_GENERIC_ARCH_TOPOLOGY) += arch_topology.o
27obj-$(CONFIG_GENERIC_ARCH_NUMA) += arch_numa.o
28obj-$(CONFIG_ACPI) += physical_location.o
29
30obj-y			+= test/
31
32ccflags-$(CONFIG_DEBUG_DRIVER) := -DDEBUG
33
34# define_trace.h needs to know how to find our header
35CFLAGS_trace.o		:= -I$(src)
36obj-$(CONFIG_TRACING)	+= trace.o
37

Last Index update Sun Aug 20 00:18:20 CST 2023