blob: afd8db3cee0371dd1d5578d084bb1c82b8f27568 [file] [log] [blame]
Chander Kashyapa2ac68f2013-08-21 10:38:56 +05301#
2# Copyright (C) 2013 Samsung Electronics
3#
4# SPDX-License-Identifier: GPL-2.0+
5#
6
7include $(TOPDIR)/config.mk
8
9LIB = $(obj)lib$(BOARD).o
10
11COBJS += arndale_spl.o
12
13ifndef CONFIG_SPL_BUILD
14COBJS += arndale.o
15endif
16
17SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
18OBJS := $(addprefix $(obj),$(COBJS) $(SOBJS))
19
20ALL := $(obj).depend $(LIB)
21
22all: $(ALL)
23
24$(LIB): $(OBJS)
25 $(call cmd_link_o_target, $(OBJS))
26
27#########################################################################
28
29# defines $(obj).depend target
30include $(SRCTREE)/rules.mk
31
32sinclude $(obj).depend
33
34#########################################################################