blob: 66b354daaf67d82dd4893f59a7050f2158afa79d [file] [log] [blame]
wdenk717b5aa2002-04-27 11:09:31 +00001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2000-2006
wdenk717b5aa2002-04-27 11:09:31 +00003# 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)
Woodruff, Richard118978c2008-02-29 17:34:35 -060033ifeq ($(BOARD),omap2420h4)
34LOAD_ADDR = 0x80300000
35else
wdenk27b207f2003-07-24 23:38:38 +000036LOAD_ADDR = 0xc100000
37endif
Woodruff, Richard118978c2008-02-29 17:34:35 -060038endif
wdenk27b207f2003-07-24 23:38:38 +000039
40ifeq ($(ARCH),mips)
41LOAD_ADDR = 0x80200000 -T mips.lds
42endif
wdenk717b5aa2002-04-27 11:09:31 +000043
wdenk4a551702003-10-08 23:26:14 +000044ifeq ($(ARCH),nios)
wdenke4cc71a2004-05-19 21:33:14 +000045LOAD_ADDR = 0x00800000 -L $(gcclibdir)/m32 -T nios.lds
wdenk4a551702003-10-08 23:26:14 +000046endif
47
wdenk5c952cf2004-10-10 21:27:30 +000048ifeq ($(ARCH),nios2)
Scott McNuttc2ced002006-06-08 11:59:57 -040049LOAD_ADDR = 0x02000000 -L $(gcclibdir) -T nios2.lds
wdenk5c952cf2004-10-10 21:27:30 +000050endif
51
wdenkbf9e3b32004-02-12 00:47:09 +000052ifeq ($(ARCH),m68k)
53LOAD_ADDR = 0x20000 -L $(clibdir)
54endif
55
wdenk507bbe32004-04-18 21:13:41 +000056ifeq ($(ARCH),microblaze)
57LOAD_ADDR = 0x80F00000
58endif
59
Wolfgang Denk0afe5192006-03-12 02:10:00 +010060ifeq ($(ARCH),blackfin)
61LOAD_ADDR = 0x1000
62endif
63
Wolfgang Denk7b64fef2006-10-24 14:21:16 +020064ifeq ($(ARCH),avr32)
65LOAD_ADDR = 0x00000000
66endif
67
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090068ifeq ($(ARCH),sh)
69LOAD_ADDR = 0x8C000000
70endif
71
Daniel Hellstromc2f02da2008-03-28 09:47:00 +010072ifeq ($(ARCH),sparc)
73LOAD_ADDR = 0x00000000 -L $(gcclibdir) -T sparc.lds
74endif
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090075
wdenk717b5aa2002-04-27 11:09:31 +000076include $(TOPDIR)/config.mk
77
Wolfgang Denk96582982006-10-24 13:55:18 +020078ELF = hello_world
wdenk717b5aa2002-04-27 11:09:31 +000079SREC = hello_world.srec
Wolfgang Denk96582982006-10-24 13:55:18 +020080BIN = hello_world.bin
wdenk717b5aa2002-04-27 11:09:31 +000081
wdenkc0176632005-05-16 14:19:49 +000082ifeq ($(CPU),mpc8xx)
Wolfgang Denkdfece952008-03-04 11:58:26 +010083ELF += test_burst
84SREC += test_burst.srec
85BIN += test_burst.bin
wdenk931da932005-05-07 19:06:32 +000086endif
87
wdenk7a8e9bed2003-05-31 18:35:21 +000088ifeq ($(ARCH),i386)
Wolfgang Denk96582982006-10-24 13:55:18 +020089ELF += 82559_eeprom
90SREC += 82559_eeprom.srec
91BIN += 82559_eeprom.bin
wdenk7a8e9bed2003-05-31 18:35:21 +000092endif
93
wdenk85ec0bc2003-03-31 16:34:49 +000094ifeq ($(ARCH),ppc)
Wolfgang Denk96582982006-10-24 13:55:18 +020095ELF += sched
96SREC += sched.srec
97BIN += sched.bin
wdenk85ec0bc2003-03-31 16:34:49 +000098endif
99
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100100ifeq ($(ARCH),blackfin)
Wolfgang Denk96582982006-10-24 13:55:18 +0200101ELF += smc91111_eeprom
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100102SREC += smc91111_eeprom.srec
Mike Frysinger32a9f5f2008-02-04 19:26:54 -0500103BIN += smc91111_eeprom.bin
Aubrey Li26bf7de2007-03-19 01:24:52 +0800104endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100105
wdenk717b5aa2002-04-27 11:09:31 +0000106# The following example is pretty 8xx specific...
107ifeq ($(CPU),mpc8xx)
Wolfgang Denk96582982006-10-24 13:55:18 +0200108ELF += timer
109SREC += timer.srec
110BIN += timer.bin
wdenk717b5aa2002-04-27 11:09:31 +0000111endif
112
wdenk3e386912003-04-05 00:53:31 +0000113# The following example is 8260 specific...
114ifeq ($(CPU),mpc8260)
Wolfgang Denk96582982006-10-24 13:55:18 +0200115ELF += mem_to_mem_idma2intr
116SREC += mem_to_mem_idma2intr.srec
117BIN += mem_to_mem_idma2intr.bin
wdenk3e386912003-04-05 00:53:31 +0000118endif
119
Detlev Zundelec0f7272006-09-01 15:02:06 +0200120# Demo for 52xx IRQs
121ifeq ($(CPU),mpc5xxx)
Wolfgang Denk96582982006-10-24 13:55:18 +0200122ELF += interrupt
123SREC += interrupt.srec
124BIN += interrupt.bin
Detlev Zundelec0f7272006-09-01 15:02:06 +0200125endif
126
wdenk717b5aa2002-04-27 11:09:31 +0000127# Utility for resetting i82559 EEPROM
128ifeq ($(BOARD),oxc)
Wolfgang Denk96582982006-10-24 13:55:18 +0200129ELF += eepro100_eeprom
130SREC += eepro100_eeprom.srec
131BIN += eepro100_eeprom.bin
wdenk717b5aa2002-04-27 11:09:31 +0000132endif
133
wdenk2d5b5612003-10-14 19:43:55 +0000134ifeq ($(BIG_ENDIAN),y)
135EX_LDFLAGS += -EB
136endif
137
Marian Balakowiczf9328632006-09-01 19:49:50 +0200138COBJS := $(SREC:.srec=.o)
wdenk717b5aa2002-04-27 11:09:31 +0000139
Marian Balakowiczf9328632006-09-01 19:49:50 +0200140LIB = $(obj)libstubs.a
wdenk27b207f2003-07-24 23:38:38 +0000141LIBAOBJS=
wdenk85ec0bc2003-03-31 16:34:49 +0000142ifeq ($(ARCH),ppc)
143LIBAOBJS+= $(ARCH)_longjmp.o $(ARCH)_setjmp.o
wdenkc0176632005-05-16 14:19:49 +0000144endif
145ifeq ($(CPU),mpc8xx)
wdenk931da932005-05-07 19:06:32 +0000146LIBAOBJS+= test_burst_lib.o
wdenk85ec0bc2003-03-31 16:34:49 +0000147endif
wdenk27b207f2003-07-24 23:38:38 +0000148LIBCOBJS= stubs.o
Marian Balakowiczf9328632006-09-01 19:49:50 +0200149
150LIBOBJS = $(addprefix $(obj),$(LIBAOBJS) $(LIBCOBJS))
151
152SRCS := $(COBJS:.o=.c) $(LIBCOBJS:.o=.c) $(if $(LIBAOBJS),$(LIBAOBJS:.o=.S))
153OBJS := $(addprefix $(obj),$(COBJS))
Wolfgang Denk96582982006-10-24 13:55:18 +0200154ELF := $(addprefix $(obj),$(ELF))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200155BIN := $(addprefix $(obj),$(BIN))
156SREC := $(addprefix $(obj),$(SREC))
wdenk717b5aa2002-04-27 11:09:31 +0000157
wdenkc29fdfc2003-08-29 20:57:53 +0000158gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)
wdenkbf9e3b32004-02-12 00:47:09 +0000159clibdir := $(shell dirname `$(CC) $(CFLAGS) -print-file-name=libc.a`)
wdenkc29fdfc2003-08-29 20:57:53 +0000160
wdenk717b5aa2002-04-27 11:09:31 +0000161CPPFLAGS += -I..
162
Wolfgang Denk96582982006-10-24 13:55:18 +0200163all: $(obj).depend $(OBJS) $(LIB) $(SREC) $(BIN) $(ELF)
wdenk717b5aa2002-04-27 11:09:31 +0000164
165#########################################################################
Marian Balakowiczf9328632006-09-01 19:49:50 +0200166$(LIB): $(obj).depend $(LIBOBJS)
Wolfgang Denk2b208f52006-10-09 01:02:05 +0200167 $(AR) $(ARFLAGS) $@ $(LIBOBJS)
wdenk717b5aa2002-04-27 11:09:31 +0000168
Wolfgang Denk96582982006-10-24 13:55:18 +0200169$(ELF):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200170$(obj)%: $(obj)%.o $(LIB)
171 $(LD) -g $(EX_LDFLAGS) -Ttext $(LOAD_ADDR) \
Mike Frysinger0858b832008-02-04 19:26:55 -0500172 -o $@ -e $(SYM_PREFIX)$(notdir $(<:.o=)) $< $(LIB) \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200173 -L$(gcclibdir) -lgcc
Wolfgang Denk96582982006-10-24 13:55:18 +0200174
175$(SREC):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200176$(obj)%.srec: $(obj)%
177 $(OBJCOPY) -O srec $< $@ 2>/dev/null
wdenk717b5aa2002-04-27 11:09:31 +0000178
Wolfgang Denk96582982006-10-24 13:55:18 +0200179$(BIN):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200180$(obj)%.bin: $(obj)%
181 $(OBJCOPY) -O binary $< $@ 2>/dev/null
wdenkdc7c9a12003-03-26 06:55:25 +0000182
wdenk717b5aa2002-04-27 11:09:31 +0000183#########################################################################
184
Marian Balakowiczf9328632006-09-01 19:49:50 +0200185# defines $(obj).depend target
186include $(SRCTREE)/rules.mk
wdenk717b5aa2002-04-27 11:09:31 +0000187
Marian Balakowiczf9328632006-09-01 19:49:50 +0200188sinclude $(obj).depend
wdenk717b5aa2002-04-27 11:09:31 +0000189
190#########################################################################