blob: 8a95ce252ec45ec4f35352cc2b1d6b2f136c4dd4 [file] [log] [blame]
Albin Tonnerre20615462009-08-20 16:04:49 +02001#
2# (C) Copyright 2003-2008
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# (C) Copyright 2008
Stelian Pop5ee0c7f2011-11-01 00:00:39 +01006# Stelian Pop <stelian@popies.net>
Albin Tonnerre20615462009-08-20 16:04:49 +02007# Lead Tech Design <www.leadtechdesign.com>
8#
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02009# SPDX-License-Identifier: GPL-2.0+
Albin Tonnerre20615462009-08-20 16:04:49 +020010#
11
12include $(TOPDIR)/config.mk
13
Sebastien Carliera8d426f2010-11-05 15:48:07 +010014LIB = $(obj)lib$(BOARD).o
Albin Tonnerre20615462009-08-20 16:04:49 +020015
16COBJS-y += tny_a9260.o
17COBJS-$(CONFIG_ATMEL_SPI) += spi.o
18
19SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
20OBJS := $(addprefix $(obj),$(COBJS-y))
21SOBJS := $(addprefix $(obj),$(SOBJS))
22
23$(LIB): $(obj).depend $(OBJS) $(SOBJS)
Sebastien Carliera8d426f2010-11-05 15:48:07 +010024 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
Albin Tonnerre20615462009-08-20 16:04:49 +020025
Albin Tonnerre20615462009-08-20 16:04:49 +020026#########################################################################
27
28# defines $(obj).depend target
29include $(SRCTREE)/rules.mk
30
31sinclude $(obj).depend
32
33#########################################################################