]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/nvidia/ventana/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / nvidia / ventana / Makefile
CommitLineData
d5ef19b9
SW
1#
2# (C) Copyright 2010,2011
3# NVIDIA Corporation <www.nvidia.com>
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
d5ef19b9
SW
6#
7
8include $(TOPDIR)/config.mk
9
3aa7a6a6 10$(shell mkdir -p $(obj)../seaboard)
d5ef19b9
SW
11
12LIB = $(obj)lib$(BOARD).o
13
5b37bd3a 14COBJS = ../seaboard/seaboard.o
d5ef19b9
SW
15
16SRCS := $(COBJS:.o=.c)
17OBJS := $(addprefix $(obj),$(COBJS))
18
19$(LIB): $(obj).depend $(OBJS)
20 $(call cmd_link_o_target, $(OBJS))
21
22#########################################################################
23
24# defines $(obj).depend target
25include $(SRCTREE)/rules.mk
26
27sinclude $(obj).depend
28
29#########################################################################