blob: ad67eb64a8d4c8eb2c8625bb13556f9aa63cdc72 [file] [log] [blame]
Mark Jonas3313e0e2008-03-10 11:37:10 +01001#
2# Copyright (C) 2007
3# Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4#
5# Copyright (C) 2007
6# Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7#
8# Copyright (C) 2007
9# Kenati Technologies, Inc.
10#
11# (C) Copyright 2008
12# Mark Jonas <mark.jonas@de.bosch.com>
13#
14# board/mpr2/Makefile
15#
16# This program is free software; you can redistribute it and/or
17# modify it under the terms of the GNU General Public License as
18# published by the Free Software Foundation; either version 2 of
19# the License, or (at your option) any later version.
20#
21# This program is distributed in the hope that it will be useful,
22# but WITHOUT ANY WARRANTY; without even the implied warranty of
23# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24# GNU General Public License for more details.
25#
26# You should have received a copy of the GNU General Public License
27# along with this program; if not, write to the Free Software
28# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29# MA 02111-1307 USA
30
31include $(TOPDIR)/config.mk
32
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010033LIB = $(obj)lib$(BOARD).o
Mark Jonas3313e0e2008-03-10 11:37:10 +010034
Nobuhiro Iwamatsu9e23fe02008-07-08 12:03:24 +090035COBJS := mpr2.o
Mark Jonas3313e0e2008-03-10 11:37:10 +010036SOBJS := lowlevel_init.o
37
Wolfgang Denka30cc5a2008-07-02 23:38:50 +020038SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
39OBJS := $(addprefix $(obj),$(COBJS))
40SOBJS := $(addprefix $(obj),$(SOBJS))
41
Mark Jonas3313e0e2008-03-10 11:37:10 +010042$(LIB): $(OBJS) $(SOBJS)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010043 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
Mark Jonas3313e0e2008-03-10 11:37:10 +010044
Mark Jonas3313e0e2008-03-10 11:37:10 +010045#########################################################################
46
Wolfgang Denka30cc5a2008-07-02 23:38:50 +020047# defines $(obj).depend target
48include $(SRCTREE)/rules.mk
Mark Jonas3313e0e2008-03-10 11:37:10 +010049
Wolfgang Denka30cc5a2008-07-02 23:38:50 +020050sinclude $(obj).depend
Mark Jonas3313e0e2008-03-10 11:37:10 +010051
52#########################################################################