]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/renesas/r0p7734/Makefile
Merge branch 'u-boot/master' into u-boot-arm/master
[karo-tx-uboot.git] / board / renesas / r0p7734 / Makefile
1 #
2 # Copyright (C) 2011 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@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   := r0p7734.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 #########################################################################