]> git.sur5r.net Git - u-boot/blobdiff - examples/Makefile
Eliminate hard-coded address of Ethernet transfer buffer on at91rm9200
[u-boot] / examples / Makefile
index a12695bba4c8f08ceffdd3106e8849f24be9ca75..2f8c4c40352cb614cd6c186783ac6b371b9e63e2 100644 (file)
@@ -58,6 +58,11 @@ include $(TOPDIR)/config.mk
 SREC   = hello_world.srec
 BIN    = hello_world.bin hello_world
 
+ifeq ($(CPU),mpc8xx)
+SREC   = test_burst.srec
+BIN    = test_burst.bin test_burst
+endif
+
 ifeq ($(ARCH),i386)
 SREC   += 82559_eeprom.srec
 BIN    += 82559_eeprom.bin 82559_eeprom
@@ -97,6 +102,9 @@ LIBAOBJS=
 ifeq ($(ARCH),ppc)
 LIBAOBJS+= $(ARCH)_longjmp.o $(ARCH)_setjmp.o
 endif
+ifeq ($(CPU),mpc8xx)
+LIBAOBJS+= test_burst_lib.o
+endif
 LIBCOBJS= stubs.o
 LIBOBJS        = $(LIBAOBJS) $(LIBCOBJS)
 
@@ -105,7 +113,7 @@ clibdir := $(shell dirname `$(CC) $(CFLAGS) -print-file-name=libc.a`)
 
 CPPFLAGS += -I..
 
-all:   .depend $(LIB) $(SREC) $(BIN)
+all:   .depend $(OBJS) $(LIB) $(SREC) $(BIN)
 
 #########################################################################
 $(LIB): .depend $(LIBOBJS)