blob: 54a4b75252de32b59a5f89ef6e0122408f02f4a7 [file] [log] [blame]
Enric Balletbo i Serra5f5c1d12013-04-04 22:27:58 +00001#
2# Makefile
3#
4# Copyright (C) 2013, ISEE 2007 SL - http://www.isee.biz/
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
21ifdef CONFIG_SPL_BUILD
22COBJS := mux.o
23endif
24
25COBJS += board.o
26SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
27OBJS := $(addprefix $(obj),$(COBJS))
28SOBJS := $(addprefix $(obj),$(SOBJS))
29
30$(LIB): $(obj).depend $(OBJS) $(SOBJS)
31 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
32
33clean:
34 rm -f $(SOBJS) $(OBJS)
35
36distclean: clean
37 rm -f $(LIB) core *.bak $(obj).depend
38
39#########################################################################
40
41# defines $(obj).depend target
42include $(SRCTREE)/rules.mk
43
44sinclude $(obj).depend
45
46#########################################################################