blob: 5698a2335a98a83ab2c555983db3774ba9f9b15f [file] [log] [blame]
Tom Rini47f7bca2012-08-13 12:03:19 -07001#
2# (C) Copyright 2012
3# Texas Instruments Incorporated - http://www.ti.com/
4# Aneesh V <aneesh@ti.com>
5#
6# This file is released under the terms of GPL v2 and any later version.
7# See the file COPYING in the root directory of the source tree for details.
8#
9# Based on common/Makefile.
10#
11
12include $(TOPDIR)/config.mk
13
14LIB = $(obj)libspl.o
15
16ifdef CONFIG_SPL_BUILD
17COBJS-$(CONFIG_SPL_FRAMEWORK) += spl.o
Stefan Roese33d34642012-08-27 12:50:59 +020018COBJS-$(CONFIG_SPL_NOR_SUPPORT) += spl_nor.o
Tom Rini47f7bca2012-08-13 12:03:19 -070019COBJS-$(CONFIG_SPL_YMODEM_SUPPORT) += spl_ymodem.o
Tom Rinid97b4ce2012-08-14 14:33:02 -070020COBJS-$(CONFIG_SPL_NAND_SUPPORT) += spl_nand.o
Ilya Yanok7ac2fe22012-09-18 00:22:50 +000021COBJS-$(CONFIG_SPL_NET_SUPPORT) += spl_net.o
Tom Rini47f7bca2012-08-13 12:03:19 -070022endif
23
24COBJS := $(sort $(COBJS-y))
25SRCS := $(COBJS:.o=.c)
26OBJS := $(addprefix $(obj),$(COBJS-y))
27
28all: $(obj).depend $(LIB)
29
30$(LIB): $(OBJS)
31 $(call cmd_link_o_target, $(OBJS))
32
33#########################################################################
34
35# defines $(obj).depend target
36include $(SRCTREE)/rules.mk
37
38sinclude $(obj).depend
39
40#########################################################################