diff options
Diffstat (limited to 'examples/Makefile')
-rw-r--r-- | examples/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/Makefile b/examples/Makefile index 300ac53..fe068ab 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 ($(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 @@ LIB = libstubs.a LIBAOBJS= ifeq ($(ARCH),ppc) LIBAOBJS+= $(ARCH)_longjmp.o $(ARCH)_setjmp.o +LIBAOBJS+= test_burst_lib.o endif LIBCOBJS= stubs.o LIBOBJS = $(LIBAOBJS) $(LIBCOBJS) |