]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - board/Marvell/aspenite/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[karo-tx-uboot.git] / board / Marvell / aspenite / Makefile
1 #
2 # (C) Copyright 2010
3 # Marvell Semiconductor <www.marvell.com>
4 # Written-by: Prafulla Wadaskar <prafulla@marvell.com>
5 # Contributor: Mahavir Jain <mjain@marvell.com>
6 #
7 # SPDX-License-Identifier:      GPL-2.0+
8 #
9
10 include $(TOPDIR)/config.mk
11
12 LIB     = $(obj)lib$(BOARD).o
13
14 COBJS   := aspenite.o
15
16 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
17 OBJS    := $(addprefix $(obj),$(COBJS))
18 SOBJS   := $(addprefix $(obj),$(SOBJS))
19
20 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
21         $(call cmd_link_o_target, $(OBJS) $(SOBJS))
22
23 #########################################################################
24
25 # defines $(obj).depend target
26 include $(SRCTREE)/rules.mk
27
28 sinclude $(obj).depend
29
30 #########################################################################