]> Git Repo - J-u-boot.git/blame - board/shmin/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[J-u-boot.git] / board / shmin / Makefile
CommitLineData
6b7c0f5e
NI
1#
2# Copyright (C) 2010 Nobuhiro Iwamatsu
3# Copyright (C) 2008 Renesas Solutions Corp.
4#
5# u-boot/board/shmin/Makefile
6#
1a459660 7# SPDX-License-Identifier: GPL-2.0+
6b7c0f5e
NI
8
9include $(TOPDIR)/config.mk
10
35697092 11LIB = lib$(BOARD).o
6b7c0f5e
NI
12
13OBJS := shmin.o
14SOBJS := lowlevel_init.o
15
16LIB := $(addprefix $(obj),$(LIB))
17OBJS := $(addprefix $(obj),$(OBJS))
18SOBJS := $(addprefix $(obj),$(SOBJS))
19
20$(LIB): $(obj).depend $(OBJS) $(SOBJS)
26ddff2d 21 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
6b7c0f5e 22
6b7c0f5e
NI
23#########################################################################
24
25# defines $(obj).depend target
26include $(SRCTREE)/rules.mk
27
28sinclude $(obj).depend
29
30#########################################################################
This page took 0.154703 seconds and 4 git commands to generate.