]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/renesas/r2dplus/Makefile
blackfin: Move machine specific gpio_port_t structure back to blackfin arch folder.
[karo-tx-uboot.git] / board / renesas / r2dplus / Makefile
1 #
2 # Copyright (C) 2007,2008
3 # Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4 #
5 # SPDX-License-Identifier:      GPL-2.0+
6 #
7 include $(TOPDIR)/config.mk
8
9 LIB     = $(obj)lib$(BOARD).o
10
11 COBJS   := r2dplus.o
12 SOBJS   := lowlevel_init.o
13
14 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
15 OBJS    := $(addprefix $(obj),$(COBJS))
16 SOBJS   := $(addprefix $(obj),$(SOBJS))
17
18 $(LIB): $(OBJS) $(SOBJS)
19         $(call cmd_link_o_target, $(OBJS) $(SOBJS))
20
21 #########################################################################
22
23 # defines $(obj).depend target
24 include $(SRCTREE)/rules.mk
25
26 sinclude $(obj).depend
27
28 #########################################################################