X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=examples%2FMakefile;h=2f8c4c40352cb614cd6c186783ac6b371b9e63e2;hb=82f4c6ac84b3fe81359f863a476196def9fb35ab;hp=300ac537224a349ca225d147a96293989802504b;hpb=652a10c0965bcbc64dc88fc54e34bedf1612e66b;p=u-boot diff --git a/examples/Makefile b/examples/Makefile index 300ac53722..2f8c4c4035 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -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)