blob: ca50eef61393fa42a3215bb3b0ae812d28f60269 [file] [log] [blame]
Chandan Nath5289e832011-10-14 02:58:26 +00001#
2# Makefile
3#
4# Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
5#
6# This program is free software; you can redistribute it and/or
7# modify it under the terms of the GNU General Public License as
8# published by the Free Software Foundation; either version 2 of
9# the License, or (at your option) any later version.
10#
11# This program is distributed "as is" WITHOUT ANY WARRANTY of any
12# kind, whether express or implied; without even the implied warranty
13# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16
17include $(TOPDIR)/config.mk
18
19LIB = $(obj)lib$(BOARD).o
20
Tom Rinidb7dd812012-07-31 10:50:01 -070021ifdef CONFIG_SPL_BUILD
Tom Rini973b6632012-07-30 16:13:10 -070022COBJS := mux.o
Tom Rinidb7dd812012-07-31 10:50:01 -070023endif
Chandan Nath5289e832011-10-14 02:58:26 +000024
25SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
26OBJS := $(addprefix $(obj),$(COBJS))
27SOBJS := $(addprefix $(obj),$(SOBJS))
28
29$(LIB): $(obj).depend $(OBJS) $(SOBJS)
30 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
31
32clean:
33 rm -f $(SOBJS) $(OBJS)
34
35distclean: clean
36 rm -f $(LIB) core *.bak $(obj).depend
37
38#########################################################################
39
40# defines $(obj).depend target
41include $(SRCTREE)/rules.mk
42
43sinclude $(obj).depend
44
45#########################################################################