blob: 9c2349dc6af490084d1c014e879457cdb4338140 [file] [log] [blame]
Stephen Warrend5ef19b2011-10-31 06:51:37 +00001#
2# (C) Copyright 2010,2011
3# NVIDIA Corporation <www.nvidia.com>
4#
Wolfgang Denk1a459662013-07-08 09:37:19 +02005# SPDX-License-Identifier: GPL-2.0+
Stephen Warrend5ef19b2011-10-31 06:51:37 +00006#
7
8include $(TOPDIR)/config.mk
9
Stephen Warren3aa7a6a2012-08-03 06:55:03 +000010$(shell mkdir -p $(obj)../seaboard)
Stephen Warrend5ef19b2011-10-31 06:51:37 +000011
12LIB = $(obj)lib$(BOARD).o
13
Tom Warren5b37bd32011-12-19 15:58:06 -070014COBJS = ../seaboard/seaboard.o
Stephen Warrend5ef19b2011-10-31 06:51:37 +000015
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#########################################################################