blob: 9d56d0782115e9417aed63213d1294f1d1570969 [file] [log] [blame]
Phil Edworthy7fbeb642011-06-01 07:35:13 +01001#
2# Copyright (C) 2011 Renesas Electronics Europe Ltd.
3#
4# This file is released under the terms of GPL v2 and any later version.
5# See the file COPYING in the root directory of the source tree for details.
6
7include $(TOPDIR)/config.mk
8
9LIB = lib$(BOARD).o
10
11OBJS := rsk7264.o
12SOBJS := lowlevel_init.o
13
14LIB := $(addprefix $(obj),$(LIB))
15OBJS := $(addprefix $(obj),$(OBJS))
16SOBJS := $(addprefix $(obj),$(SOBJS))
17
18$(LIB): $(obj).depend $(OBJS) $(SOBJS)
19 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
20
Phil Edworthy7fbeb642011-06-01 07:35:13 +010021#########################################################################
22
23# defines $(obj).depend target
24include $(SRCTREE)/rules.mk
25
26sinclude $(obj).depend