]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/renesas/sh7752evb/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[karo-tx-uboot.git] / board / renesas / sh7752evb / Makefile
1 #
2 # Copyright (C) 2012  Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
3 #
4 # SPDX-License-Identifier:      GPL-2.0+
5
6 include $(TOPDIR)/config.mk
7
8 LIB     = $(obj)lib$(BOARD).o
9
10 COBJS   := sh7752evb.o spi-boot.o
11 SOBJS   := lowlevel_init.o
12
13 $(LIB): $(obj).depend $(COBJS) $(SOBJS)
14         $(call cmd_link_o_target, $(COBJS) $(SOBJS))
15
16 #########################################################################
17
18 # defines $(obj).depend target
19 include $(SRCTREE)/rules.mk
20
21 sinclude $(obj).depend
22
23 #########################################################################