blob: dbcfa920e61dbfd5231deeb2c750a864ec5990b8 [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
Dirk Behme91eee542008-12-14 09:47:15 +010036ifeq ($(CPU),omap3)
37LOAD_ADDR = 0x80300000
38else
wdenk27b207f2003-07-24 23:38:38 +000039LOAD_ADDR = 0xc100000
40endif
Woodruff, Richard118978c2008-02-29 17:34:35 -060041endif
Dirk Behme91eee542008-12-14 09:47:15 +010042endif
wdenk27b207f2003-07-24 23:38:38 +000043
44ifeq ($(ARCH),mips)
45LOAD_ADDR = 0x80200000 -T mips.lds
46endif
wdenk717b5aa2002-04-27 11:09:31 +000047
wdenk4a551702003-10-08 23:26:14 +000048ifeq ($(ARCH),nios)
wdenke4cc71a2004-05-19 21:33:14 +000049LOAD_ADDR = 0x00800000 -L $(gcclibdir)/m32 -T nios.lds
wdenk4a551702003-10-08 23:26:14 +000050endif
51
wdenk5c952cf2004-10-10 21:27:30 +000052ifeq ($(ARCH),nios2)
Scott McNuttc2ced002006-06-08 11:59:57 -040053LOAD_ADDR = 0x02000000 -L $(gcclibdir) -T nios2.lds
wdenk5c952cf2004-10-10 21:27:30 +000054endif
55
wdenkbf9e3b32004-02-12 00:47:09 +000056ifeq ($(ARCH),m68k)
57LOAD_ADDR = 0x20000 -L $(clibdir)
58endif
59
wdenk507bbe32004-04-18 21:13:41 +000060ifeq ($(ARCH),microblaze)
61LOAD_ADDR = 0x80F00000
62endif
63
Wolfgang Denk0afe5192006-03-12 02:10:00 +010064ifeq ($(ARCH),blackfin)
65LOAD_ADDR = 0x1000
66endif
67
Wolfgang Denk7b64fef2006-10-24 14:21:16 +020068ifeq ($(ARCH),avr32)
69LOAD_ADDR = 0x00000000
70endif
71
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090072ifeq ($(ARCH),sh)
73LOAD_ADDR = 0x8C000000
Nobuhiro Iwamatsu6ad43d02008-08-31 22:48:33 +090074ifeq ($(CPU),sh2)
75BIG_ENDIAN=y
76endif
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090077endif
78
Daniel Hellstromc2f02da2008-03-28 09:47:00 +010079ifeq ($(ARCH),sparc)
80LOAD_ADDR = 0x00000000 -L $(gcclibdir) -T sparc.lds
81endif
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090082
wdenk717b5aa2002-04-27 11:09:31 +000083include $(TOPDIR)/config.mk
84
Wolfgang Denk96582982006-10-24 13:55:18 +020085ELF = hello_world
wdenk717b5aa2002-04-27 11:09:31 +000086SREC = hello_world.srec
Wolfgang Denk96582982006-10-24 13:55:18 +020087BIN = hello_world.bin
wdenk717b5aa2002-04-27 11:09:31 +000088
wdenkc0176632005-05-16 14:19:49 +000089ifeq ($(CPU),mpc8xx)
Wolfgang Denkdfece952008-03-04 11:58:26 +010090ELF += test_burst
91SREC += test_burst.srec
92BIN += test_burst.bin
wdenk931da932005-05-07 19:06:32 +000093endif
94
wdenk7a8e9bed2003-05-31 18:35:21 +000095ifeq ($(ARCH),i386)
Wolfgang Denk96582982006-10-24 13:55:18 +020096ELF += 82559_eeprom
97SREC += 82559_eeprom.srec
98BIN += 82559_eeprom.bin
wdenk7a8e9bed2003-05-31 18:35:21 +000099endif
100
wdenk85ec0bc2003-03-31 16:34:49 +0000101ifeq ($(ARCH),ppc)
Wolfgang Denk96582982006-10-24 13:55:18 +0200102ELF += sched
103SREC += sched.srec
104BIN += sched.bin
wdenk85ec0bc2003-03-31 16:34:49 +0000105endif
106
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100107ifeq ($(ARCH),blackfin)
Mike Frysingerad2d1632008-12-22 02:56:07 -0500108BFIN_BIN = smc91111_eeprom smc911x_eeprom
109ELF += $(BFIN_BIN)
110SREC += $(addsuffix .srec,$(BFIN_BIN))
111BIN += $(addsuffix .bin,$(BFIN_BIN))
Aubrey Li26bf7de2007-03-19 01:24:52 +0800112endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100113
wdenk717b5aa2002-04-27 11:09:31 +0000114# The following example is pretty 8xx specific...
115ifeq ($(CPU),mpc8xx)
Wolfgang Denk96582982006-10-24 13:55:18 +0200116ELF += timer
117SREC += timer.srec
118BIN += timer.bin
wdenk717b5aa2002-04-27 11:09:31 +0000119endif
120
wdenk3e386912003-04-05 00:53:31 +0000121# The following example is 8260 specific...
122ifeq ($(CPU),mpc8260)
Wolfgang Denk96582982006-10-24 13:55:18 +0200123ELF += mem_to_mem_idma2intr
124SREC += mem_to_mem_idma2intr.srec
125BIN += mem_to_mem_idma2intr.bin
wdenk3e386912003-04-05 00:53:31 +0000126endif
127
Detlev Zundelec0f7272006-09-01 15:02:06 +0200128# Demo for 52xx IRQs
129ifeq ($(CPU),mpc5xxx)
Wolfgang Denk96582982006-10-24 13:55:18 +0200130ELF += interrupt
131SREC += interrupt.srec
132BIN += interrupt.bin
Detlev Zundelec0f7272006-09-01 15:02:06 +0200133endif
134
wdenk717b5aa2002-04-27 11:09:31 +0000135# Utility for resetting i82559 EEPROM
136ifeq ($(BOARD),oxc)
Wolfgang Denk96582982006-10-24 13:55:18 +0200137ELF += eepro100_eeprom
138SREC += eepro100_eeprom.srec
139BIN += eepro100_eeprom.bin
wdenk717b5aa2002-04-27 11:09:31 +0000140endif
141
wdenk2d5b5612003-10-14 19:43:55 +0000142ifeq ($(BIG_ENDIAN),y)
143EX_LDFLAGS += -EB
144endif
145
Marian Balakowiczf9328632006-09-01 19:49:50 +0200146COBJS := $(SREC:.srec=.o)
wdenk717b5aa2002-04-27 11:09:31 +0000147
Marian Balakowiczf9328632006-09-01 19:49:50 +0200148LIB = $(obj)libstubs.a
wdenk27b207f2003-07-24 23:38:38 +0000149LIBAOBJS=
wdenk85ec0bc2003-03-31 16:34:49 +0000150ifeq ($(ARCH),ppc)
151LIBAOBJS+= $(ARCH)_longjmp.o $(ARCH)_setjmp.o
wdenkc0176632005-05-16 14:19:49 +0000152endif
153ifeq ($(CPU),mpc8xx)
wdenk931da932005-05-07 19:06:32 +0000154LIBAOBJS+= test_burst_lib.o
wdenk85ec0bc2003-03-31 16:34:49 +0000155endif
wdenk27b207f2003-07-24 23:38:38 +0000156LIBCOBJS= stubs.o
Marian Balakowiczf9328632006-09-01 19:49:50 +0200157
158LIBOBJS = $(addprefix $(obj),$(LIBAOBJS) $(LIBCOBJS))
159
160SRCS := $(COBJS:.o=.c) $(LIBCOBJS:.o=.c) $(if $(LIBAOBJS),$(LIBAOBJS:.o=.S))
161OBJS := $(addprefix $(obj),$(COBJS))
Wolfgang Denk96582982006-10-24 13:55:18 +0200162ELF := $(addprefix $(obj),$(ELF))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200163BIN := $(addprefix $(obj),$(BIN))
164SREC := $(addprefix $(obj),$(SREC))
wdenk717b5aa2002-04-27 11:09:31 +0000165
wdenkc29fdfc2003-08-29 20:57:53 +0000166gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)
wdenkbf9e3b32004-02-12 00:47:09 +0000167clibdir := $(shell dirname `$(CC) $(CFLAGS) -print-file-name=libc.a`)
wdenkc29fdfc2003-08-29 20:57:53 +0000168
wdenk717b5aa2002-04-27 11:09:31 +0000169CPPFLAGS += -I..
170
Wolfgang Denk96582982006-10-24 13:55:18 +0200171all: $(obj).depend $(OBJS) $(LIB) $(SREC) $(BIN) $(ELF)
wdenk717b5aa2002-04-27 11:09:31 +0000172
173#########################################################################
Marian Balakowiczf9328632006-09-01 19:49:50 +0200174$(LIB): $(obj).depend $(LIBOBJS)
Wolfgang Denk2b208f52006-10-09 01:02:05 +0200175 $(AR) $(ARFLAGS) $@ $(LIBOBJS)
wdenk717b5aa2002-04-27 11:09:31 +0000176
Wolfgang Denk96582982006-10-24 13:55:18 +0200177$(ELF):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200178$(obj)%: $(obj)%.o $(LIB)
179 $(LD) -g $(EX_LDFLAGS) -Ttext $(LOAD_ADDR) \
Mike Frysinger0858b832008-02-04 19:26:55 -0500180 -o $@ -e $(SYM_PREFIX)$(notdir $(<:.o=)) $< $(LIB) \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200181 -L$(gcclibdir) -lgcc
Wolfgang Denk96582982006-10-24 13:55:18 +0200182
183$(SREC):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200184$(obj)%.srec: $(obj)%
185 $(OBJCOPY) -O srec $< $@ 2>/dev/null
wdenk717b5aa2002-04-27 11:09:31 +0000186
Wolfgang Denk96582982006-10-24 13:55:18 +0200187$(BIN):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200188$(obj)%.bin: $(obj)%
189 $(OBJCOPY) -O binary $< $@ 2>/dev/null
wdenkdc7c9a12003-03-26 06:55:25 +0000190
wdenk717b5aa2002-04-27 11:09:31 +0000191#########################################################################
192
Marian Balakowiczf9328632006-09-01 19:49:50 +0200193# defines $(obj).depend target
194include $(SRCTREE)/rules.mk
wdenk717b5aa2002-04-27 11:09:31 +0000195
Marian Balakowiczf9328632006-09-01 19:49:50 +0200196sinclude $(obj).depend
wdenk717b5aa2002-04-27 11:09:31 +0000197
198#########################################################################