blob: 5a30198e21a8fc65fabdb64d379dd8e704f12203 [file] [log] [blame]
Gary Jennejohn6bd24472007-01-24 12:16:56 +01001#
2# (C) Copyright 2002
3# Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4# Marius Groeger <mgroeger@sysgo.de>
5#
6# See file CREDITS for list of people who contributed to this
7# project.
8#
9# This program is free software; you can redistribute it and/or
10# modify it under the terms of the GNU General Public License as
11# published by the Free Software Foundation; either version 2 of
12# the License, or (at your option) any later version.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program; if not, write to the Free Software
21# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22# MA 02111-1307 USA
23#
24
25include $(TOPDIR)/config.mk
26
27LIB = lib$(BOARD).a
28
29OBJS := lpc2292sodimm.o flash.o mmc.o spi.o mmc_hw.o eth.o
30SOBJS := lowlevel_init.o iap_entry.o
31
32$(LIB): $(OBJS) $(SOBJS)
33 $(AR) crv $@ $(OBJS) $(SOBJS)
34
35# this MUST be compiled as thumb code!
36iap_entry.o:
37 arm-linux-gcc -D__ASSEMBLY__ -g -Os -fno-strict-aliasing \
38 -fno-common -ffixed-r8 -msoft-float -D__KERNEL__ \
39 -DTEXT_BASE=0x81500000 -I/home/garyj/proj/LPC/u-boot/include \
40 -fno-builtin -ffreestanding -nostdinc -isystem \
41 /opt/eldk/arm/usr/bin/../lib/gcc/arm-linux/4.0.0/include -pipe \
42 -DCONFIG_ARM -D__ARM__ -march=armv4t -mtune=arm7tdmi -mabi=apcs-gnu \
43 -c -o iap_entry.o iap_entry.S
44
45clean:
46 rm -f $(SOBJS) $(OBJS)
47
48distclean: clean
49 rm -f $(LIB) core *.bak .depend
50
51#########################################################################
52
53.depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
54 $(CC) -M $(CPPFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@
55
56-include .depend
57
58#########################################################################