]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/calao/tny_a9260/Makefile
8a95ce252ec45ec4f35352cc2b1d6b2f136c4dd4
[karo-tx-uboot.git] / board / calao / tny_a9260 / Makefile
1 #
2 # (C) Copyright 2003-2008
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # (C) Copyright 2008
6 # Stelian Pop <stelian@popies.net>
7 # Lead Tech Design <www.leadtechdesign.com>
8 #
9 # SPDX-License-Identifier:      GPL-2.0+
10 #
11
12 include $(TOPDIR)/config.mk
13
14 LIB     = $(obj)lib$(BOARD).o
15
16 COBJS-y += tny_a9260.o
17 COBJS-$(CONFIG_ATMEL_SPI)       += spi.o
18
19 SRCS    := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
20 OBJS    := $(addprefix $(obj),$(COBJS-y))
21 SOBJS   := $(addprefix $(obj),$(SOBJS))
22
23 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
24         $(call cmd_link_o_target, $(OBJS) $(SOBJS))
25
26 #########################################################################
27
28 # defines $(obj).depend target
29 include $(SRCTREE)/rules.mk
30
31 sinclude $(obj).depend
32
33 #########################################################################