]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/renesas/sh7785lcr/Makefile
Merge branch 'u-boot/master' into u-boot-arm/master
[karo-tx-uboot.git] / board / renesas / sh7785lcr / Makefile
1 #
2 # Copyright (C) 2008  Yoshihiro Shimoda <shimoda.yoshihiro@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   := sh7785lcr.o selfcheck.o rtl8169_mac.o
11 SOBJS   := lowlevel_init.o
12
13 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
14 OBJS    := $(addprefix $(obj),$(COBJS))
15 SOBJS   := $(addprefix $(obj),$(SOBJS))
16
17 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
18         $(call cmd_link_o_target, $(OBJS) $(SOBJS))
19
20 #########################################################################
21
22 # defines $(obj).depend target
23 include $(SRCTREE)/rules.mk
24
25 sinclude $(obj).depend
26
27 #########################################################################