]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/calao/tny_a9260/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / calao / tny_a9260 / Makefile
CommitLineData
2dc851e3
AT
1#
2# (C) Copyright 2003-2008
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# (C) Copyright 2008
c9e798d3 6# Stelian Pop <stelian@popies.net>
2dc851e3
AT
7# Lead Tech Design <www.leadtechdesign.com>
8#
1a459660 9# SPDX-License-Identifier: GPL-2.0+
2dc851e3
AT
10#
11
12include $(TOPDIR)/config.mk
13
6d8962e8 14LIB = $(obj)lib$(BOARD).o
2dc851e3
AT
15
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)
6d8962e8 24 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
2dc851e3 25
2dc851e3
AT
26#########################################################################
27
28# defines $(obj).depend target
29include $(SRCTREE)/rules.mk
30
31sinclude $(obj).depend
32
33#########################################################################