2002-04-27 11:09:31 +00:00
|
|
|
#
|
2006-09-01 17:49:50 +00:00
|
|
|
# (C) Copyright 2000-2006
|
2002-04-27 11:09:31 +00:00
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
|
|
|
# See file CREDITS for list of people who contributed to this
|
|
|
|
# project.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License as
|
|
|
|
# published by the Free Software Foundation; either version 2 of
|
|
|
|
# the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
# MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
2003-07-24 23:38:38 +00:00
|
|
|
ifeq ($(ARCH),ppc)
|
2002-04-27 11:09:31 +00:00
|
|
|
LOAD_ADDR = 0x40000
|
2003-07-24 23:38:38 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ARCH),i386)
|
|
|
|
LOAD_ADDR = 0x40000
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ARCH),arm)
|
|
|
|
LOAD_ADDR = 0xc100000
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ARCH),mips)
|
|
|
|
LOAD_ADDR = 0x80200000 -T mips.lds
|
|
|
|
endif
|
2002-04-27 11:09:31 +00:00
|
|
|
|
2003-10-08 23:26:14 +00:00
|
|
|
ifeq ($(ARCH),nios)
|
2004-05-19 21:33:14 +00:00
|
|
|
LOAD_ADDR = 0x00800000 -L $(gcclibdir)/m32 -T nios.lds
|
2003-10-08 23:26:14 +00:00
|
|
|
endif
|
|
|
|
|
2004-10-10 21:27:30 +00:00
|
|
|
ifeq ($(ARCH),nios2)
|
2006-06-08 15:59:57 +00:00
|
|
|
LOAD_ADDR = 0x02000000 -L $(gcclibdir) -T nios2.lds
|
2004-10-10 21:27:30 +00:00
|
|
|
endif
|
|
|
|
|
2004-02-12 00:47:09 +00:00
|
|
|
ifeq ($(ARCH),m68k)
|
|
|
|
LOAD_ADDR = 0x20000 -L $(clibdir)
|
|
|
|
endif
|
|
|
|
|
2004-04-18 21:13:41 +00:00
|
|
|
ifeq ($(ARCH),microblaze)
|
|
|
|
LOAD_ADDR = 0x80F00000
|
|
|
|
endif
|
|
|
|
|
2006-03-12 01:10:00 +00:00
|
|
|
ifeq ($(ARCH),blackfin)
|
|
|
|
LOAD_ADDR = 0x1000
|
|
|
|
endif
|
|
|
|
|
2006-10-24 12:21:16 +00:00
|
|
|
ifeq ($(ARCH),avr32)
|
|
|
|
LOAD_ADDR = 0x00000000
|
|
|
|
endif
|
|
|
|
|
2002-04-27 11:09:31 +00:00
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
|
2006-10-24 11:55:18 +00:00
|
|
|
ELF = hello_world
|
2002-04-27 11:09:31 +00:00
|
|
|
SREC = hello_world.srec
|
2006-10-24 11:55:18 +00:00
|
|
|
BIN = hello_world.bin
|
2002-04-27 11:09:31 +00:00
|
|
|
|
2005-05-16 14:19:49 +00:00
|
|
|
ifeq ($(CPU),mpc8xx)
|
2006-10-24 11:55:18 +00:00
|
|
|
ELF = test_burst
|
2005-05-07 19:06:32 +00:00
|
|
|
SREC = test_burst.srec
|
2006-10-24 11:55:18 +00:00
|
|
|
BIN = test_burst.bin
|
2005-05-07 19:06:32 +00:00
|
|
|
endif
|
|
|
|
|
2003-05-31 18:35:21 +00:00
|
|
|
ifeq ($(ARCH),i386)
|
2006-10-24 11:55:18 +00:00
|
|
|
ELF += 82559_eeprom
|
|
|
|
SREC += 82559_eeprom.srec
|
|
|
|
BIN += 82559_eeprom.bin
|
2003-05-31 18:35:21 +00:00
|
|
|
endif
|
|
|
|
|
2003-03-31 16:34:49 +00:00
|
|
|
ifeq ($(ARCH),ppc)
|
2006-10-24 11:55:18 +00:00
|
|
|
ELF += sched
|
|
|
|
SREC += sched.srec
|
|
|
|
BIN += sched.bin
|
2003-03-31 16:34:49 +00:00
|
|
|
endif
|
|
|
|
|
2006-03-12 01:10:00 +00:00
|
|
|
ifeq ($(ARCH),blackfin)
|
2007-03-18 17:24:52 +00:00
|
|
|
ifneq ($(BOARD),bf537-stamp)
|
|
|
|
ifneq ($(BOARD),bf537-pnav)
|
2006-10-24 11:55:18 +00:00
|
|
|
ELF += smc91111_eeprom
|
2006-03-12 01:10:00 +00:00
|
|
|
SREC += smc91111_eeprom.srec
|
2006-10-24 11:55:18 +00:00
|
|
|
BIN += smc91111_eeprom.bin
|
2006-03-12 01:10:00 +00:00
|
|
|
endif
|
2007-03-18 17:24:52 +00:00
|
|
|
endif
|
|
|
|
endif
|
2006-03-12 01:10:00 +00:00
|
|
|
|
2002-04-27 11:09:31 +00:00
|
|
|
# The following example is pretty 8xx specific...
|
|
|
|
ifeq ($(CPU),mpc8xx)
|
2006-10-24 11:55:18 +00:00
|
|
|
ELF += timer
|
|
|
|
SREC += timer.srec
|
|
|
|
BIN += timer.bin
|
2002-04-27 11:09:31 +00:00
|
|
|
endif
|
|
|
|
|
2003-04-05 00:53:31 +00:00
|
|
|
# The following example is 8260 specific...
|
|
|
|
ifeq ($(CPU),mpc8260)
|
2006-10-24 11:55:18 +00:00
|
|
|
ELF += mem_to_mem_idma2intr
|
|
|
|
SREC += mem_to_mem_idma2intr.srec
|
|
|
|
BIN += mem_to_mem_idma2intr.bin
|
2003-04-05 00:53:31 +00:00
|
|
|
endif
|
|
|
|
|
2006-09-01 13:02:06 +00:00
|
|
|
# Demo for 52xx IRQs
|
|
|
|
ifeq ($(CPU),mpc5xxx)
|
2006-10-24 11:55:18 +00:00
|
|
|
ELF += interrupt
|
|
|
|
SREC += interrupt.srec
|
|
|
|
BIN += interrupt.bin
|
2006-09-01 13:02:06 +00:00
|
|
|
endif
|
|
|
|
|
2002-04-27 11:09:31 +00:00
|
|
|
# Utility for resetting i82559 EEPROM
|
|
|
|
ifeq ($(BOARD),oxc)
|
2006-10-24 11:55:18 +00:00
|
|
|
ELF += eepro100_eeprom
|
|
|
|
SREC += eepro100_eeprom.srec
|
|
|
|
BIN += eepro100_eeprom.bin
|
2002-04-27 11:09:31 +00:00
|
|
|
endif
|
|
|
|
|
2003-10-14 19:43:55 +00:00
|
|
|
ifeq ($(BIG_ENDIAN),y)
|
|
|
|
EX_LDFLAGS += -EB
|
|
|
|
endif
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
COBJS := $(SREC:.srec=.o)
|
2002-04-27 11:09:31 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
LIB = $(obj)libstubs.a
|
2003-07-24 23:38:38 +00:00
|
|
|
LIBAOBJS=
|
2003-03-31 16:34:49 +00:00
|
|
|
ifeq ($(ARCH),ppc)
|
|
|
|
LIBAOBJS+= $(ARCH)_longjmp.o $(ARCH)_setjmp.o
|
2005-05-16 14:19:49 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(CPU),mpc8xx)
|
2005-05-07 19:06:32 +00:00
|
|
|
LIBAOBJS+= test_burst_lib.o
|
2003-03-31 16:34:49 +00:00
|
|
|
endif
|
2003-07-24 23:38:38 +00:00
|
|
|
LIBCOBJS= stubs.o
|
2006-09-01 17:49:50 +00:00
|
|
|
|
|
|
|
LIBOBJS = $(addprefix $(obj),$(LIBAOBJS) $(LIBCOBJS))
|
|
|
|
|
|
|
|
SRCS := $(COBJS:.o=.c) $(LIBCOBJS:.o=.c) $(if $(LIBAOBJS),$(LIBAOBJS:.o=.S))
|
|
|
|
OBJS := $(addprefix $(obj),$(COBJS))
|
2006-10-24 11:55:18 +00:00
|
|
|
ELF := $(addprefix $(obj),$(ELF))
|
2006-09-01 17:49:50 +00:00
|
|
|
BIN := $(addprefix $(obj),$(BIN))
|
|
|
|
SREC := $(addprefix $(obj),$(SREC))
|
2002-04-27 11:09:31 +00:00
|
|
|
|
2003-08-29 20:57:53 +00:00
|
|
|
gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)
|
2004-02-12 00:47:09 +00:00
|
|
|
clibdir := $(shell dirname `$(CC) $(CFLAGS) -print-file-name=libc.a`)
|
2003-08-29 20:57:53 +00:00
|
|
|
|
2002-04-27 11:09:31 +00:00
|
|
|
CPPFLAGS += -I..
|
|
|
|
|
2006-10-24 11:55:18 +00:00
|
|
|
all: $(obj).depend $(OBJS) $(LIB) $(SREC) $(BIN) $(ELF)
|
2002-04-27 11:09:31 +00:00
|
|
|
|
|
|
|
#########################################################################
|
2006-09-01 17:49:50 +00:00
|
|
|
$(LIB): $(obj).depend $(LIBOBJS)
|
2006-10-08 23:02:05 +00:00
|
|
|
$(AR) $(ARFLAGS) $@ $(LIBOBJS)
|
2002-04-27 11:09:31 +00:00
|
|
|
|
2006-10-24 11:55:18 +00:00
|
|
|
$(ELF):
|
2006-09-01 17:49:50 +00:00
|
|
|
$(obj)%: $(obj)%.o $(LIB)
|
|
|
|
$(LD) -g $(EX_LDFLAGS) -Ttext $(LOAD_ADDR) \
|
|
|
|
-o $@ -e $(notdir $(<:.o=)) $< $(LIB) \
|
|
|
|
-L$(gcclibdir) -lgcc
|
2006-10-24 11:55:18 +00:00
|
|
|
|
|
|
|
$(SREC):
|
2006-09-01 17:49:50 +00:00
|
|
|
$(obj)%.srec: $(obj)%
|
|
|
|
$(OBJCOPY) -O srec $< $@ 2>/dev/null
|
2002-04-27 11:09:31 +00:00
|
|
|
|
2006-10-24 11:55:18 +00:00
|
|
|
$(BIN):
|
2006-09-01 17:49:50 +00:00
|
|
|
$(obj)%.bin: $(obj)%
|
|
|
|
$(OBJCOPY) -O binary $< $@ 2>/dev/null
|
2003-03-26 06:55:25 +00:00
|
|
|
|
2002-04-27 11:09:31 +00:00
|
|
|
#########################################################################
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
# defines $(obj).depend target
|
|
|
|
include $(SRCTREE)/rules.mk
|
2002-04-27 11:09:31 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
sinclude $(obj).depend
|
2002-04-27 11:09:31 +00:00
|
|
|
|
|
|
|
#########################################################################
|