diff --git a/Makefile b/Makefile index 64aabf564..c0be548b6 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ include $(TOPDIR)/config.mk AOBJS = COBJS = $(patsubst %.c,%.o,$(wildcard src/*.c)) -TARGETS = blink.o +TARGETS = test-blink.o # Add GCC lib PLATFORM_LIBS += --no-warn-mismatch -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc diff --git a/boot.lds b/boot.lds index a3e3cfc5c..b800cb3c9 100644 --- a/boot.lds +++ b/boot.lds @@ -32,7 +32,6 @@ SECTIONS . = ALIGN(4); .text : { - src/blink.o (.text) *(.text) } diff --git a/src/blink.c b/src/test-blink.c similarity index 100% rename from src/blink.c rename to src/test-blink.c