Phil Edworthy | 7fbeb64 | 2011-06-01 07:35:13 +0100 | [diff] [blame] | 1 | # |
| 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 | |
| 7 | include $(TOPDIR)/config.mk |
| 8 | |
| 9 | LIB = lib$(BOARD).o |
| 10 | |
| 11 | OBJS := rsk7264.o |
| 12 | SOBJS := lowlevel_init.o |
| 13 | |
| 14 | LIB := $(addprefix $(obj),$(LIB)) |
| 15 | OBJS := $(addprefix $(obj),$(OBJS)) |
| 16 | SOBJS := $(addprefix $(obj),$(SOBJS)) |
| 17 | |
| 18 | $(LIB): $(obj).depend $(OBJS) $(SOBJS) |
| 19 | $(call cmd_link_o_target, $(OBJS) $(SOBJS)) |
| 20 | |
Phil Edworthy | 7fbeb64 | 2011-06-01 07:35:13 +0100 | [diff] [blame] | 21 | ######################################################################### |
| 22 | |
| 23 | # defines $(obj).depend target |
| 24 | include $(SRCTREE)/rules.mk |
| 25 | |
| 26 | sinclude $(obj).depend |