]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/renesas/r2dplus/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / renesas / r2dplus / Makefile
CommitLineData
f5e2466f
NI
1#
2# Copyright (C) 2007,2008
3# Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
f5e2466f
NI
6#
7include $(TOPDIR)/config.mk
8
6d8962e8 9LIB = $(obj)lib$(BOARD).o
f5e2466f 10
9e23fe05 11COBJS := r2dplus.o
f5e2466f
NI
12SOBJS := lowlevel_init.o
13
a30cc5a3
WD
14SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
15OBJS := $(addprefix $(obj),$(COBJS))
16SOBJS := $(addprefix $(obj),$(SOBJS))
17
f5e2466f 18$(LIB): $(OBJS) $(SOBJS)
6d8962e8 19 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
f5e2466f 20
a30cc5a3 21#########################################################################
f5e2466f 22
a30cc5a3
WD
23# defines $(obj).depend target
24include $(SRCTREE)/rules.mk
f5e2466f 25
a30cc5a3 26sinclude $(obj).depend
f5e2466f 27
a30cc5a3 28#########################################################################