2010-10-24 18:12:24 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2010 Nobuhiro Iwamatsu
|
|
|
|
# Copyright (C) 2008 Renesas Solutions Corp.
|
|
|
|
#
|
|
|
|
# u-boot/board/shmin/Makefile
|
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2010-10-24 18:12:24 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
|
2011-01-06 03:20:46 +00:00
|
|
|
LIB = lib$(BOARD).o
|
2010-10-24 18:12:24 +00:00
|
|
|
|
|
|
|
OBJS := shmin.o
|
|
|
|
SOBJS := lowlevel_init.o
|
|
|
|
|
|
|
|
LIB := $(addprefix $(obj),$(LIB))
|
|
|
|
OBJS := $(addprefix $(obj),$(OBJS))
|
|
|
|
SOBJS := $(addprefix $(obj),$(SOBJS))
|
|
|
|
|
|
|
|
$(LIB): $(obj).depend $(OBJS) $(SOBJS)
|
2011-10-18 05:30:17 +00:00
|
|
|
$(call cmd_link_o_target, $(OBJS) $(SOBJS))
|
2010-10-24 18:12:24 +00:00
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
# defines $(obj).depend target
|
|
|
|
include $(SRCTREE)/rules.mk
|
|
|
|
|
|
|
|
sinclude $(obj).depend
|
|
|
|
|
|
|
|
#########################################################################
|