blob: 90d26550b03c41f7009b2400d56f80a95e44b425 [file] [log] [blame]
wdenk717b5aa2002-04-27 11:09:31 +00001#
2# (C) Copyright 2000
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 2 of
11# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
wdenk27b207f2003-07-24 23:38:38 +000024ifeq ($(ARCH),ppc)
wdenk717b5aa2002-04-27 11:09:31 +000025LOAD_ADDR = 0x40000
wdenk27b207f2003-07-24 23:38:38 +000026endif
27
28ifeq ($(ARCH),i386)
29LOAD_ADDR = 0x40000
30endif
31
32ifeq ($(ARCH),arm)
33LOAD_ADDR = 0xc100000
34endif
35
36ifeq ($(ARCH),mips)
37LOAD_ADDR = 0x80200000 -T mips.lds
38endif
wdenk717b5aa2002-04-27 11:09:31 +000039
wdenk4a551702003-10-08 23:26:14 +000040ifeq ($(ARCH),nios)
41LOAD_ADDR = 0x01000000 -L $(gcclibdir)/m32 -T nios.lds
42endif
43
wdenk717b5aa2002-04-27 11:09:31 +000044include $(TOPDIR)/config.mk
45
46SREC = hello_world.srec
wdenkdc7c9a12003-03-26 06:55:25 +000047BIN = hello_world.bin
wdenk717b5aa2002-04-27 11:09:31 +000048
wdenk7a8e9bed2003-05-31 18:35:21 +000049ifeq ($(ARCH),i386)
50SREC += 82559_eeprom.srec
51BIN += 82559_eeprom.bin
52endif
53
wdenk85ec0bc2003-03-31 16:34:49 +000054ifeq ($(ARCH),ppc)
55SREC += sched.srec
56BIN += sched.bin
57endif
58
wdenk717b5aa2002-04-27 11:09:31 +000059# The following example is pretty 8xx specific...
60ifeq ($(CPU),mpc8xx)
61SREC += timer.srec
wdenk85ec0bc2003-03-31 16:34:49 +000062BIN += timer.bin
wdenk717b5aa2002-04-27 11:09:31 +000063endif
64
wdenk3e386912003-04-05 00:53:31 +000065# The following example is 8260 specific...
66ifeq ($(CPU),mpc8260)
67SREC += mem_to_mem_idma2intr.srec
68BIN += mem_to_mem_idma2intr.bin
69endif
70
wdenk717b5aa2002-04-27 11:09:31 +000071# Utility for resetting i82559 EEPROM
72ifeq ($(BOARD),oxc)
73SREC += eepro100_eeprom.srec
74endif
75
76OBJS = $(SREC:.srec=.o)
77
wdenk27b207f2003-07-24 23:38:38 +000078LIB = libstubs.a
79LIBAOBJS=
wdenk85ec0bc2003-03-31 16:34:49 +000080ifeq ($(ARCH),ppc)
81LIBAOBJS+= $(ARCH)_longjmp.o $(ARCH)_setjmp.o
82endif
wdenk27b207f2003-07-24 23:38:38 +000083LIBCOBJS= stubs.o
wdenk717b5aa2002-04-27 11:09:31 +000084LIBOBJS = $(LIBAOBJS) $(LIBCOBJS)
85
wdenkc29fdfc2003-08-29 20:57:53 +000086gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)
87
wdenk717b5aa2002-04-27 11:09:31 +000088CPPFLAGS += -I..
89
wdenkdc7c9a12003-03-26 06:55:25 +000090all: .depend $(LIB) $(SREC) $(BIN)
wdenk717b5aa2002-04-27 11:09:31 +000091
92#########################################################################
93$(LIB): .depend $(LIBOBJS)
94 $(AR) crv $@ $(LIBOBJS)
95
96%.srec: %.o $(LIB)
wdenkc29fdfc2003-08-29 20:57:53 +000097 $(LD) -g -Ttext $(LOAD_ADDR) -o $(<:.o=) -e $(<:.o=) $< $(LIB) \
98 -L$(gcclibdir) -lgcc
wdenk717b5aa2002-04-27 11:09:31 +000099 $(OBJCOPY) -O srec $(<:.o=) $@
100
wdenkdc7c9a12003-03-26 06:55:25 +0000101%.bin: %.srec
wdenkac6dbb82003-03-26 11:42:53 +0000102 $(OBJCOPY) -O binary $< $@ 2>/dev/null
wdenkdc7c9a12003-03-26 06:55:25 +0000103
wdenk717b5aa2002-04-27 11:09:31 +0000104#########################################################################
105
106.depend: Makefile $(OBJS:.o=.c) $(LIBCOBJS:.o=.c) $(LIBAOBJS:.o=.S)
107 $(CC) -M $(CFLAGS) $(OBJS:.o=.c) $(LIBCOBJS:.o=.c) $(LIBAOBJS:.o=.S) > $@
108
109sinclude .depend
110
111#########################################################################