]> git.ipfire.org Git - people/ms/u-boot.git/blame - examples/Makefile
Add AVR32 architecture support
[people/ms/u-boot.git] / examples / Makefile
CommitLineData
717b5aad 1#
f9328639 2# (C) Copyright 2000-2006
717b5aad
WD
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
27b207fd 24ifeq ($(ARCH),ppc)
717b5aad 25LOAD_ADDR = 0x40000
27b207fd
WD
26endif
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
717b5aad 39
4a551709 40ifeq ($(ARCH),nios)
e4cc71aa 41LOAD_ADDR = 0x00800000 -L $(gcclibdir)/m32 -T nios.lds
4a551709
WD
42endif
43
5c952cf0 44ifeq ($(ARCH),nios2)
c2ced000 45LOAD_ADDR = 0x02000000 -L $(gcclibdir) -T nios2.lds
5c952cf0
WD
46endif
47
bf9e3b38
WD
48ifeq ($(ARCH),m68k)
49LOAD_ADDR = 0x20000 -L $(clibdir)
50endif
51
507bbe3e
WD
52ifeq ($(ARCH),microblaze)
53LOAD_ADDR = 0x80F00000
54endif
55
0afe519a
WD
56ifeq ($(ARCH),blackfin)
57LOAD_ADDR = 0x1000
58endif
59
7b64fef3
WD
60ifeq ($(ARCH),avr32)
61LOAD_ADDR = 0x00000000
62endif
63
717b5aad
WD
64include $(TOPDIR)/config.mk
65
96582987 66ELF = hello_world
717b5aad 67SREC = hello_world.srec
96582987 68BIN = hello_world.bin
717b5aad 69
c0176630 70ifeq ($(CPU),mpc8xx)
96582987 71ELF = test_burst
931da93e 72SREC = test_burst.srec
96582987 73BIN = test_burst.bin
931da93e
WD
74endif
75
7a8e9bed 76ifeq ($(ARCH),i386)
96582987
WD
77ELF += 82559_eeprom
78SREC += 82559_eeprom.srec
79BIN += 82559_eeprom.bin
7a8e9bed
WD
80endif
81
85ec0bcc 82ifeq ($(ARCH),ppc)
96582987
WD
83ELF += sched
84SREC += sched.srec
85BIN += sched.bin
85ec0bcc
WD
86endif
87
0afe519a 88ifeq ($(ARCH),blackfin)
96582987 89ELF += smc91111_eeprom
0afe519a 90SREC += smc91111_eeprom.srec
96582987 91BIN += smc91111_eeprom.bin
0afe519a
WD
92endif
93
717b5aad
WD
94# The following example is pretty 8xx specific...
95ifeq ($(CPU),mpc8xx)
96582987
WD
96ELF += timer
97SREC += timer.srec
98BIN += timer.bin
717b5aad
WD
99endif
100
3e38691e
WD
101# The following example is 8260 specific...
102ifeq ($(CPU),mpc8260)
96582987
WD
103ELF += mem_to_mem_idma2intr
104SREC += mem_to_mem_idma2intr.srec
105BIN += mem_to_mem_idma2intr.bin
3e38691e
WD
106endif
107
ec0f7277
DZ
108# Demo for 52xx IRQs
109ifeq ($(CPU),mpc5xxx)
96582987
WD
110ELF += interrupt
111SREC += interrupt.srec
112BIN += interrupt.bin
ec0f7277
DZ
113endif
114
717b5aad
WD
115# Utility for resetting i82559 EEPROM
116ifeq ($(BOARD),oxc)
96582987
WD
117ELF += eepro100_eeprom
118SREC += eepro100_eeprom.srec
119BIN += eepro100_eeprom.bin
717b5aad
WD
120endif
121
2d5b561e
WD
122ifeq ($(BIG_ENDIAN),y)
123EX_LDFLAGS += -EB
124endif
125
f9328639 126COBJS := $(SREC:.srec=.o)
717b5aad 127
f9328639 128LIB = $(obj)libstubs.a
27b207fd 129LIBAOBJS=
85ec0bcc
WD
130ifeq ($(ARCH),ppc)
131LIBAOBJS+= $(ARCH)_longjmp.o $(ARCH)_setjmp.o
c0176630
WD
132endif
133ifeq ($(CPU),mpc8xx)
931da93e 134LIBAOBJS+= test_burst_lib.o
85ec0bcc 135endif
27b207fd 136LIBCOBJS= stubs.o
f9328639
MB
137
138LIBOBJS = $(addprefix $(obj),$(LIBAOBJS) $(LIBCOBJS))
139
140SRCS := $(COBJS:.o=.c) $(LIBCOBJS:.o=.c) $(if $(LIBAOBJS),$(LIBAOBJS:.o=.S))
141OBJS := $(addprefix $(obj),$(COBJS))
96582987 142ELF := $(addprefix $(obj),$(ELF))
f9328639
MB
143BIN := $(addprefix $(obj),$(BIN))
144SREC := $(addprefix $(obj),$(SREC))
717b5aad 145
c29fdfc1 146gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)
bf9e3b38 147clibdir := $(shell dirname `$(CC) $(CFLAGS) -print-file-name=libc.a`)
c29fdfc1 148
717b5aad
WD
149CPPFLAGS += -I..
150
96582987 151all: $(obj).depend $(OBJS) $(LIB) $(SREC) $(BIN) $(ELF)
717b5aad
WD
152
153#########################################################################
f9328639 154$(LIB): $(obj).depend $(LIBOBJS)
2b208f53 155 $(AR) $(ARFLAGS) $@ $(LIBOBJS)
717b5aad 156
96582987 157$(ELF):
f9328639
MB
158$(obj)%: $(obj)%.o $(LIB)
159 $(LD) -g $(EX_LDFLAGS) -Ttext $(LOAD_ADDR) \
160 -o $@ -e $(notdir $(<:.o=)) $< $(LIB) \
161 -L$(gcclibdir) -lgcc
96582987
WD
162
163$(SREC):
f9328639
MB
164$(obj)%.srec: $(obj)%
165 $(OBJCOPY) -O srec $< $@ 2>/dev/null
717b5aad 166
96582987 167$(BIN):
f9328639
MB
168$(obj)%.bin: $(obj)%
169 $(OBJCOPY) -O binary $< $@ 2>/dev/null
dc7c9a1a 170
717b5aad
WD
171#########################################################################
172
f9328639
MB
173# defines $(obj).depend target
174include $(SRCTREE)/rules.mk
717b5aad 175
f9328639 176sinclude $(obj).depend
717b5aad
WD
177
178#########################################################################