]> git.sur5r.net Git - u-boot/blob - board/nvidia/ventana/Makefile
Merge branch 'next' of git://git.denx.de/u-boot-mpc83xx
[u-boot] / board / nvidia / ventana / Makefile
1 #
2 #  (C) Copyright 2010,2011
3 #  NVIDIA Corporation <www.nvidia.com>
4 #
5 # SPDX-License-Identifier:      GPL-2.0+
6 #
7
8 include $(TOPDIR)/config.mk
9
10 $(shell mkdir -p $(obj)../seaboard)
11
12 LIB     = $(obj)lib$(BOARD).o
13
14 COBJS   = ../seaboard/seaboard.o
15
16 SRCS    := $(COBJS:.o=.c)
17 OBJS    := $(addprefix $(obj),$(COBJS))
18
19 $(LIB): $(obj).depend $(OBJS)
20         $(call cmd_link_o_target, $(OBJS))
21
22 #########################################################################
23
24 # defines $(obj).depend target
25 include $(SRCTREE)/rules.mk
26
27 sinclude $(obj).depend
28
29 #########################################################################