Add test tool to exercise SDRAM accesses in burst mode
(as standalone program, MPC8xx/PowerPC only)
diff --git a/examples/Makefile b/examples/Makefile
index 300ac53..fe068ab 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -58,6 +58,11 @@
SREC = hello_world.srec
BIN = hello_world.bin hello_world
+ifeq ($(ARCH),ppc)
+SREC = test_burst.srec
+BIN = test_burst.bin test_burst
+endif
+
ifeq ($(ARCH),i386)
SREC += 82559_eeprom.srec
BIN += 82559_eeprom.bin 82559_eeprom
@@ -96,6 +101,7 @@
LIBAOBJS=
ifeq ($(ARCH),ppc)
LIBAOBJS+= $(ARCH)_longjmp.o $(ARCH)_setjmp.o
+LIBAOBJS+= test_burst_lib.o
endif
LIBCOBJS= stubs.o
LIBOBJS = $(LIBAOBJS) $(LIBCOBJS)