forked from Minki/linux
950b260ed2
Reviewed the Makefile on request by Michal and this is the resulting changes. o Use ':=' for assignmnet so we do not re-evaluate for each use o Use $(shell echo xxx) to remove "" o Replaced CFLAGS_KERNEL with KBUILD_CFLAGS The settings are equally relevant for modules and the linked kernel o Dropped LDFLAGS_BLOB - it is no longer used o Refactored assignmnets to libs-y and core-y o Use MMU for the MMU specific extension. "MMUEXT" was hurting my eyes and I did not wanted it spread to m68k Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Michal Simek <monstr@monstr.eu>
21 lines
485 B
Makefile
21 lines
485 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
|
|
extra-y := head.o vmlinux.lds
|
|
|
|
obj-y += exceptions.o \
|
|
hw_exception_handler.o init_task.o intc.o irq.o of_device.o \
|
|
of_platform.o process.o prom.o prom_parse.o ptrace.o \
|
|
setup.o signal.o sys_microblaze.o timer.o traps.o
|
|
|
|
obj-y += cpu/
|
|
|
|
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
|
|
obj-$(CONFIG_SELFMOD) += selfmod.o
|
|
obj-$(CONFIG_HEART_BEAT) += heartbeat.o
|
|
obj-$(CONFIG_MODULES) += microblaze_ksyms.o module.o
|
|
obj-$(CONFIG_MMU) += misc.o
|
|
|
|
obj-y += entry$(MMU).o
|