blob: cdf269088a56cd992b716e86a6e635684cd67201 [file] [log] [blame]
wdenk717b5aa2002-04-27 11:09:31 +00001#
wdenk3203c8f2004-07-10 21:45:47 +00002# (C) Copyright 2000-2004
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
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)
wdenke4adb352004-05-19 21:33:14 +000041LOAD_ADDR = 0x00800000 -L $(gcclibdir)/m32 -T nios.lds
wdenk60164a82003-10-08 23:26:14 +000042endif
43
wdenkef3386f2004-10-10 21:27:30 +000044ifeq ($(ARCH),nios2)
Scott McNutta5721a32006-06-08 11:59:57 -040045LOAD_ADDR = 0x02000000 -L $(gcclibdir) -T nios2.lds
wdenkef3386f2004-10-10 21:27:30 +000046endif
47
wdenke65527f2004-02-12 00:47:09 +000048ifeq ($(ARCH),m68k)
49LOAD_ADDR = 0x20000 -L $(clibdir)
50endif
51
wdenk12490652004-04-18 21:13:41 +000052ifeq ($(ARCH),microblaze)
53LOAD_ADDR = 0x80F00000
54endif
55
Wolfgang Denk46d2b522006-03-12 02:10:00 +010056ifeq ($(ARCH),blackfin)
57LOAD_ADDR = 0x1000
58endif
59
wdenk717b5aa2002-04-27 11:09:31 +000060include $(TOPDIR)/config.mk
61
62SREC = hello_world.srec
wdenk5da7f2f2004-01-03 00:43:19 +000063BIN = hello_world.bin hello_world
wdenk717b5aa2002-04-27 11:09:31 +000064
wdenk4e5bc872005-05-16 14:19:49 +000065ifeq ($(CPU),mpc8xx)
wdenke339a7a2005-05-07 19:06:32 +000066SREC = test_burst.srec
67BIN = test_burst.bin test_burst
68endif
69
wdenkabda5ca2003-05-31 18:35:21 +000070ifeq ($(ARCH),i386)
71SREC += 82559_eeprom.srec
wdenk5da7f2f2004-01-03 00:43:19 +000072BIN += 82559_eeprom.bin 82559_eeprom
wdenkabda5ca2003-05-31 18:35:21 +000073endif
74
wdenk8dba0502003-03-31 16:34:49 +000075ifeq ($(ARCH),ppc)
76SREC += sched.srec
wdenk5da7f2f2004-01-03 00:43:19 +000077BIN += sched.bin sched
wdenk8dba0502003-03-31 16:34:49 +000078endif
79
Wolfgang Denk46d2b522006-03-12 02:10:00 +010080ifeq ($(ARCH),blackfin)
81SREC += smc91111_eeprom.srec
82BIN += smc91111_eeprom.bin smc91111_eeprom
83endif
84
wdenk717b5aa2002-04-27 11:09:31 +000085# The following example is pretty 8xx specific...
86ifeq ($(CPU),mpc8xx)
87SREC += timer.srec
wdenk5da7f2f2004-01-03 00:43:19 +000088BIN += timer.bin timer
wdenk717b5aa2002-04-27 11:09:31 +000089endif
90
wdenkb02744a2003-04-05 00:53:31 +000091# The following example is 8260 specific...
92ifeq ($(CPU),mpc8260)
93SREC += mem_to_mem_idma2intr.srec
wdenk5da7f2f2004-01-03 00:43:19 +000094BIN += mem_to_mem_idma2intr.bin mem_to_mem_idma2intr
wdenkb02744a2003-04-05 00:53:31 +000095endif
96
Detlev Zundel3f434df2006-09-01 15:02:06 +020097# Demo for 52xx IRQs
98ifeq ($(CPU),mpc5xxx)
99SREC += interrupt.srec
100BIN += interrupt.bin interrupt
101endif
102
wdenk717b5aa2002-04-27 11:09:31 +0000103# Utility for resetting i82559 EEPROM
104ifeq ($(BOARD),oxc)
105SREC += eepro100_eeprom.srec
wdenk5da7f2f2004-01-03 00:43:19 +0000106BIN += eepro100_eeprom.bin eepro100_eeprom
wdenk717b5aa2002-04-27 11:09:31 +0000107endif
108
wdenkbd1575f2003-10-14 19:43:55 +0000109ifeq ($(BIG_ENDIAN),y)
110EX_LDFLAGS += -EB
111endif
112
wdenk717b5aa2002-04-27 11:09:31 +0000113OBJS = $(SREC:.srec=.o)
114
wdenk874ac262003-07-24 23:38:38 +0000115LIB = libstubs.a
116LIBAOBJS=
wdenk8dba0502003-03-31 16:34:49 +0000117ifeq ($(ARCH),ppc)
118LIBAOBJS+= $(ARCH)_longjmp.o $(ARCH)_setjmp.o
wdenk4e5bc872005-05-16 14:19:49 +0000119endif
120ifeq ($(CPU),mpc8xx)
wdenke339a7a2005-05-07 19:06:32 +0000121LIBAOBJS+= test_burst_lib.o
wdenk8dba0502003-03-31 16:34:49 +0000122endif
wdenk874ac262003-07-24 23:38:38 +0000123LIBCOBJS= stubs.o
wdenk717b5aa2002-04-27 11:09:31 +0000124LIBOBJS = $(LIBAOBJS) $(LIBCOBJS)
125
wdenk710e3502003-08-29 20:57:53 +0000126gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)
wdenke65527f2004-02-12 00:47:09 +0000127clibdir := $(shell dirname `$(CC) $(CFLAGS) -print-file-name=libc.a`)
wdenk710e3502003-08-29 20:57:53 +0000128
wdenk717b5aa2002-04-27 11:09:31 +0000129CPPFLAGS += -I..
130
Wolfgang Denkc1e10612006-06-02 16:47:10 +0200131all: .depend $(OBJS) $(LIB) $(SREC) $(BIN)
wdenk717b5aa2002-04-27 11:09:31 +0000132
133#########################################################################
134$(LIB): .depend $(LIBOBJS)
135 $(AR) crv $@ $(LIBOBJS)
136
wdenk5da7f2f2004-01-03 00:43:19 +0000137%: %.o $(LIB)
wdenkbd1575f2003-10-14 19:43:55 +0000138 $(LD) -g $(EX_LDFLAGS) -Ttext $(LOAD_ADDR) \
wdenk5da7f2f2004-01-03 00:43:19 +0000139 -o $@ -e $(<:.o=) $< $(LIB) \
wdenk710e3502003-08-29 20:57:53 +0000140 -L$(gcclibdir) -lgcc
wdenk5da7f2f2004-01-03 00:43:19 +0000141%.srec: %
142 $(OBJCOPY) -O srec $< $@ 2>/dev/null
wdenk717b5aa2002-04-27 11:09:31 +0000143
wdenk5da7f2f2004-01-03 00:43:19 +0000144%.bin: %
145 $(OBJCOPY) -O binary $< $@ 2>/dev/null
wdenkc8434db2003-03-26 06:55:25 +0000146
wdenk717b5aa2002-04-27 11:09:31 +0000147#########################################################################
148
149.depend: Makefile $(OBJS:.o=.c) $(LIBCOBJS:.o=.c) $(LIBAOBJS:.o=.S)
150 $(CC) -M $(CFLAGS) $(OBJS:.o=.c) $(LIBCOBJS:.o=.c) $(LIBAOBJS:.o=.S) > $@
151
152sinclude .depend
153
154#########################################################################