
Hello,
I'm just writing a support for a new board based on mips (au1100) and I cannot understand why I have to apply this patch:
diff --git a/examples/Makefile b/examples/Makefile index fee2674..b732318 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -60,7 +60,7 @@ endif include $(TOPDIR)/config.mk
SREC = hello_world.srec -BIN = hello_world.bin hello_world +BIN = hello_world hello_world.bin
ifeq ($(CPU),mpc8xx) SREC = test_burst.srec @@ -122,7 +122,7 @@ clibdir := $(shell dirname `$(CC) $(CFLA
CPPFLAGS += -I..
-all: .depend $(OBJS) $(LIB) $(SREC) $(BIN) +all: .depend $(OBJS) $(LIB) $(BIN) $(SREC)
######################################################################### $(LIB): .depend $(LIBOBJS)
in order to have files into example directory to be compiled? =:-o
Rodolfo