mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-05 19:10:13 +00:00
7fbeb6422d
The rsk7264 (also know as rsk2+sh7264) is an SH2A based board with 64MB NAND flash and 64MB SDRAM. It is very similar to the rsk7203 board. Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32 lines
737 B
Makefile
32 lines
737 B
Makefile
#
|
|
# Copyright (C) 2011 Renesas Electronics Europe Ltd.
|
|
#
|
|
# This file is released under the terms of GPL v2 and any later version.
|
|
# See the file COPYING in the root directory of the source tree for details.
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
LIB = lib$(BOARD).o
|
|
|
|
OBJS := rsk7264.o
|
|
SOBJS := lowlevel_init.o
|
|
|
|
LIB := $(addprefix $(obj),$(LIB))
|
|
OBJS := $(addprefix $(obj),$(OBJS))
|
|
SOBJS := $(addprefix $(obj),$(SOBJS))
|
|
|
|
$(LIB): $(obj).depend $(OBJS) $(SOBJS)
|
|
$(call cmd_link_o_target, $(OBJS) $(SOBJS))
|
|
|
|
clean:
|
|
rm -f $(SOBJS) $(OBJS)
|
|
|
|
distclean: clean
|
|
rm -f $(LIB) core *.bak .depend
|
|
|
|
#########################################################################
|
|
|
|
# defines $(obj).depend target
|
|
include $(SRCTREE)/rules.mk
|
|
|
|
sinclude $(obj).depend
|