1# 2# Copyright (C) 2012 Renesas Electronics Europe Ltd. 3# Copyright (C) 2012 Phil Edworthy 4# 5# This file is released under the terms of GPL v2 and any later version. 6# See the file COPYING in the root directory of the source tree for details. 7 8include $(TOPDIR)/config.mk 9 10LIB = lib$(BOARD).o 11 12OBJS := rsk7269.o 13SOBJS := lowlevel_init.o 14 15LIB := $(addprefix $(obj),$(LIB)) 16OBJS := $(addprefix $(obj),$(OBJS)) 17SOBJS := $(addprefix $(obj),$(SOBJS)) 18 19$(LIB): $(obj).depend $(OBJS) $(SOBJS) 20 $(call cmd_link_o_target, $(OBJS) $(SOBJS)) 21 22######################################################################### 23 24# defines $(obj).depend target 25include $(SRCTREE)/rules.mk 26 27sinclude $(obj).depend 28