]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/renesas/rsk7203/Makefile
blackfin: Move machine specific gpio_port_t structure back to blackfin arch folder.
[karo-tx-uboot.git] / board / renesas / rsk7203 / Makefile
1 #
2 # Copyright (C) 2007,2008 Nobuhiro Iwamatsu
3 # Copyright (C) 2008 Renesas Solutions Corp.
4 #
5 # u-boot/board/rsk7203/Makefile
6 #
7 # SPDX-License-Identifier:      GPL-2.0+
8
9 include $(TOPDIR)/config.mk
10
11 LIB     = lib$(BOARD).o
12
13 OBJS    := rsk7203.o
14 SOBJS   := lowlevel_init.o
15
16 LIB     := $(addprefix $(obj),$(LIB))
17 OBJS    := $(addprefix $(obj),$(OBJS))
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 #########################################################################