https://github.com/torvalds/linux
Raw File
Tip revision: a2755a80f40e5794ddc20e00f781af9d6320fafb authored by Linus Torvalds on 20 April 2005, 23:24:21 UTC
Linux v2.6.12-rc3
Tip revision: a2755a8
Makefile
# Makefile for the Linux device tree

obj-y			:= core.o sys.o interface.o bus.o \
			   driver.o class.o class_simple.o platform.o \
			   cpu.o firmware.o init.o map.o dmapool.o \
			   attribute_container.o transport_class.o
obj-y			+= power/
obj-$(CONFIG_FW_LOADER)	+= firmware_class.o
obj-$(CONFIG_NUMA)	+= node.o

ifeq ($(CONFIG_DEBUG_DRIVER),y)
EXTRA_CFLAGS += -DDEBUG
endif

back to top