blob: a353203128e088f374dca580ae7245b0442a2993 [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
wdenk874ac262003-07-24 23:38:38 +000024ifeq ($(ARCH),ppc)
wdenk717b5aa2002-04-27 11:09:31 +000025LOAD_ADDR = 0x40000
wdenk874ac262003-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
wdenk60164a82003-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
wdenkc8434db2003-03-26 06:55:25 +000047BIN = hello_world.bin
wdenk717b5aa2002-04-27 11:09:31 +000048
wdenkabda5ca2003-05-31 18:35:21 +000049ifeq ($(ARCH),i386)
50SREC += 82559_eeprom.srec
51BIN += 82559_eeprom.bin
52endif
53
wdenk8dba0502003-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
wdenk8dba0502003-03-31 16:34:49 +000062BIN += timer.bin
wdenk717b5aa2002-04-27 11:09:31 +000063endif
64
wdenkb02744a2003-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
wdenkbd1575f2003-10-14 19:43:55 +000076ifeq ($(BIG_ENDIAN),y)
77EX_LDFLAGS += -EB
78endif
79
wdenk717b5aa2002-04-27 11:09:31 +000080OBJS = $(SREC:.srec=.o)
81
wdenk874ac262003-07-24 23:38:38 +000082LIB = libstubs.a
83LIBAOBJS=
wdenk8dba0502003-03-31 16:34:49 +000084ifeq ($(ARCH),ppc)
85LIBAOBJS+= $(ARCH)_longjmp.o $(ARCH)_setjmp.o
86endif
wdenk874ac262003-07-24 23:38:38 +000087LIBCOBJS= stubs.o
wdenk717b5aa2002-04-27 11:09:31 +000088LIBOBJS = $(LIBAOBJS) $(LIBCOBJS)
89
wdenk710e3502003-08-29 20:57:53 +000090gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)
91
wdenk717b5aa2002-04-27 11:09:31 +000092CPPFLAGS += -I..
93
wdenkc8434db2003-03-26 06:55:25 +000094all: .depend $(LIB) $(SREC) $(BIN)
wdenk717b5aa2002-04-27 11:09:31 +000095
96#########################################################################
97$(LIB): .depend $(LIBOBJS)
98 $(AR) crv $@ $(LIBOBJS)
99
100%.srec: %.o $(LIB)
wdenkbd1575f2003-10-14 19:43:55 +0000101 $(LD) -g $(EX_LDFLAGS) -Ttext $(LOAD_ADDR) \
102 -o $(<:.o=) -e $(<:.o=) $< $(LIB) \
wdenk710e3502003-08-29 20:57:53 +0000103 -L$(gcclibdir) -lgcc
wdenk717b5aa2002-04-27 11:09:31 +0000104 $(OBJCOPY) -O srec $(<:.o=) $@
105
wdenkc8434db2003-03-26 06:55:25 +0000106%.bin: %.srec
wdenk1adff3d2003-03-26 11:42:53 +0000107 $(OBJCOPY) -O binary $< $@ 2>/dev/null
wdenkc8434db2003-03-26 06:55:25 +0000108
wdenk717b5aa2002-04-27 11:09:31 +0000109#########################################################################
110
111.depend: Makefile $(OBJS:.o=.c) $(LIBCOBJS:.o=.c) $(LIBAOBJS:.o=.S)
112 $(CC) -M $(CFLAGS) $(OBJS:.o=.c) $(LIBCOBJS:.o=.c) $(LIBAOBJS:.o=.S) > $@
113
114sinclude .depend
115
116#########################################################################