* Patch by Ronen Shitrit, 10 Dec 2003:

Add support for the Marvell DB64360 / DB64460 development boards

* Patch by Detlev Zundel, 10 Dec 2003:
  fix dependency problem in examples/Makefile
This commit is contained in:
wdenk
2004-01-03 00:43:19 +00:00
parent b6e4c4033c
commit 3a473b2a65
66 changed files with 30086 additions and 201 deletions

View File

@@ -44,16 +44,16 @@ endif
include $(TOPDIR)/config.mk
SREC = hello_world.srec
BIN = hello_world.bin
BIN = hello_world.bin hello_world
ifeq ($(ARCH),i386)
SREC += 82559_eeprom.srec
BIN += 82559_eeprom.bin
BIN += 82559_eeprom.bin 82559_eeprom
endif
ifeq ($(ARCH),ppc)
SREC += sched.srec
BIN += sched.bin
BIN += sched.bin sched
endif
ifeq ($(ARCH),m68k)
@@ -64,18 +64,19 @@ endif
# The following example is pretty 8xx specific...
ifeq ($(CPU),mpc8xx)
SREC += timer.srec
BIN += timer.bin
BIN += timer.bin timer
endif
# The following example is 8260 specific...
ifeq ($(CPU),mpc8260)
SREC += mem_to_mem_idma2intr.srec
BIN += mem_to_mem_idma2intr.bin
BIN += mem_to_mem_idma2intr.bin mem_to_mem_idma2intr
endif
# Utility for resetting i82559 EEPROM
ifeq ($(BOARD),oxc)
SREC += eepro100_eeprom.srec
BIN += eepro100_eeprom.bin eepro100_eeprom
endif
ifeq ($(BIG_ENDIAN),y)
@@ -102,14 +103,15 @@ all: .depend $(LIB) $(SREC) $(BIN)
$(LIB): .depend $(LIBOBJS)
$(AR) crv $@ $(LIBOBJS)
%.srec: %.o $(LIB)
%: %.o $(LIB)
$(LD) -g $(EX_LDFLAGS) -Ttext $(LOAD_ADDR) \
-o $(<:.o=) -e $(<:.o=) $< $(LIB) \
-o $@ -e $(<:.o=) $< $(LIB) \
-L$(gcclibdir) -lgcc
$(OBJCOPY) -O srec $(<:.o=) $@
%.srec: %
$(OBJCOPY) -O srec $< $@ 2>/dev/null
%.bin: %.srec
$(OBJCOPY) -O binary $(<:.srec=) $@ 2>/dev/null
%.bin: %
$(OBJCOPY) -O binary $< $@ 2>/dev/null
#########################################################################