2007-12-03 13:58:45 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2000-2006
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
|
|
|
# (C) Copyright 2007
|
|
|
|
# Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
|
|
|
|
#
|
|
|
|
# (C) Copyright 2007
|
|
|
|
# Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
|
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2007-12-03 13:58:45 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
|
2010-11-05 14:48:07 +00:00
|
|
|
LIB = $(obj)lib$(CPU).o
|
2007-12-03 13:58:45 +00:00
|
|
|
|
2013-10-21 02:53:25 +00:00
|
|
|
START = start.o
|
2008-11-20 07:44:42 +00:00
|
|
|
COBJS = cpu.o interrupts.o watchdog.o cache.o
|
2007-12-03 13:58:45 +00:00
|
|
|
|
2008-07-02 21:38:50 +00:00
|
|
|
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
|
|
|
|
OBJS := $(addprefix $(obj),$(COBJS))
|
|
|
|
SOBJS := $(addprefix $(obj),$(SOBJS))
|
2007-12-03 13:58:45 +00:00
|
|
|
|
2013-10-21 02:53:25 +00:00
|
|
|
all: $(START) $(LIB)
|
|
|
|
|
2008-07-02 21:38:50 +00:00
|
|
|
$(LIB): $(OBJS) $(SOBJS)
|
2010-11-05 14:48:07 +00:00
|
|
|
$(call cmd_link_o_target, $(OBJS) $(SOBJS))
|
2008-07-02 21:38:50 +00:00
|
|
|
|
2007-12-03 13:58:45 +00:00
|
|
|
#########################################################################
|
|
|
|
|
2008-07-02 21:38:50 +00:00
|
|
|
# defines $(obj).depend target
|
|
|
|
include $(SRCTREE)/rules.mk
|
2007-12-03 13:58:45 +00:00
|
|
|
|
2008-07-02 21:38:50 +00:00
|
|
|
sinclude $(obj).depend
|
2007-12-03 13:58:45 +00:00
|
|
|
|
|
|
|
#########################################################################
|