]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/Marvell/dkb/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / Marvell / dkb / Makefile
CommitLineData
ea4bc120
LW
1#
2# (C) Copyright 2011
3# Marvell Semiconductor <www.marvell.com>
4# Written-by: Lei Wen <leiwen@marvell.com>
5#
1a459660 6# SPDX-License-Identifier: GPL-2.0+
ea4bc120
LW
7#
8
9include $(TOPDIR)/config.mk
10
11LIB = $(obj)lib$(BOARD).o
12
13COBJS := dkb.o
14
15SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
16OBJS := $(addprefix $(obj),$(COBJS))
17SOBJS := $(addprefix $(obj),$(SOBJS))
18
19$(LIB): $(obj).depend $(OBJS) $(SOBJS)
26ddff2d 20 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
ea4bc120 21
ea4bc120
LW
22#########################################################################
23
24# defines $(obj).depend target
25include $(SRCTREE)/rules.mk
26
27sinclude $(obj).depend
28
29#########################################################################