]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/evb64260/Makefile
Add support for a saving build objects in a separate directory.
[people/ms/u-boot.git] / board / evb64260 / Makefile
CommitLineData
e85390dc 1#
f9328639
MB
2# (C) Copyright 2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
e85390dc
WD
5# (C) Copyright 2001
6# Josh Huber <huber@mclx.com>, Mission Critical Linux, Inc.
7#
8# See file CREDITS for list of people who contributed to this
9# project.
10#
11# This program is free software; you can redistribute it and/or
12# modify it under the terms of the GNU General Public License as
13# published by the Free Software Foundation; either version 2 of
14# the License, or (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24# MA 02111-1307 USA
25#
26
27include $(TOPDIR)/config.mk
28
f9328639 29LIB = $(obj)lib$(BOARD).a
e85390dc
WD
30
31SOBJS = misc.o
f9328639 32COBJS = $(BOARD).o flash.o serial.o memory.o pci.o \
e85390dc
WD
33 eth.o eth_addrtbl.o mpsc.o i2c.o \
34 sdram_init.o zuma_pbb.o intel_flash.o zuma_pbb_mbox.o
35
f9328639
MB
36SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
37OBJS := $(addprefix $(obj),$(COBJS))
38SOBJS := $(addprefix $(obj),$(SOBJS))
e85390dc 39
f9328639 40$(LIB): $(obj).depend $(OBJS) $(SOBJS)
8bde7f77 41 $(AR) crv $@ $(OBJS) $(SOBJS)
e85390dc
WD
42
43#########################################################################
44
f9328639
MB
45# defines $(obj).depend target
46include $(SRCTREE)/rules.mk
e85390dc 47
f9328639 48sinclude $(obj).depend
e85390dc
WD
49
50#########################################################################