mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
mpc512x: change cpu/mpc512x/Makefile to use Kconfig style
Signed-off-by: Wolfgang Denk <wd@denx.de> Cc: John Rigby <jcrigby@gmail.com>
This commit is contained in:
parent
a89c33db96
commit
03e069dc0a
1 changed files with 4 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
#
|
||||
# (C) Copyright 2007 DENX Software Engineering
|
||||
# (C) Copyright 2007-2009 DENX Software Engineering
|
||||
#
|
||||
# See file CREDITS for list of people who contributed to this
|
||||
# project.
|
||||
|
@ -25,11 +25,10 @@ include $(TOPDIR)/config.mk
|
|||
LIB = $(obj)lib$(CPU).a
|
||||
|
||||
START = start.o
|
||||
COBJS = traps.o cpu.o cpu_init.o speed.o interrupts.o serial.o i2c.o iopin.o
|
||||
ifdef CONFIG_IIM
|
||||
COBJS += iim.o
|
||||
endif
|
||||
COBJS-y := traps.o cpu.o cpu_init.o speed.o interrupts.o serial.o i2c.o iopin.o
|
||||
COBJS-${CONFIG_IIM} += iim.o
|
||||
|
||||
COBJS := $(COBJS-y)
|
||||
SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
|
||||
OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
|
||||
START := $(addprefix $(obj),$(START))
|
||||
|
|
Loading…
Reference in a new issue