5ea8176994
* Split the implementation-agnostic stuff in separate files. * Make sure that targets using non-default request_irq() pull kernel/irq/devres.o * Introduce new symbols (HAS_IOPORT and HAS_IOMEM) defaulting to positive; allow architectures to turn them off (we needed these symbols anyway for dependencies of quite a few drivers). * protect the ioport-related parts of lib/devres.o with CONFIG_HAS_IOPORT. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
21 lines
454 B
Makefile
21 lines
454 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
ifndef CONFIG_SUN3
|
|
extra-y := head.o
|
|
else
|
|
extra-y := sun3-head.o
|
|
endif
|
|
extra-y += vmlinux.lds
|
|
|
|
obj-y := entry.o process.o traps.o ints.o signal.o ptrace.o \
|
|
sys_m68k.o time.o semaphore.o setup.o m68k_ksyms.o devres.o
|
|
|
|
devres-y = ../../../kernel/irq/devres.o
|
|
|
|
obj-$(CONFIG_PCI) += bios32.o
|
|
obj-$(CONFIG_MODULES) += module.o
|
|
obj-y$(CONFIG_MMU_SUN3) += dma.o # no, it's not a typo
|
|
|
|
EXTRA_AFLAGS := -traditional
|