From 6d9ecd0b5543a950dfb153fa1cbff5ab1b03d20a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Sun, 14 Oct 2012 14:15:31 +0000 Subject: [PATCH] removed object files list from final linker call since that's misleading (controlled through link script itself) --- BaS_GNU/BaS_GNU/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaS_GNU/BaS_GNU/Makefile b/BaS_GNU/BaS_GNU/Makefile index 7e10da3..b6df343 100644 --- a/BaS_GNU/BaS_GNU/Makefile +++ b/BaS_GNU/BaS_GNU/Makefile @@ -55,7 +55,7 @@ OBJS=$(COBJS) $(AOBJS) all: $(EXEC) $(EXEC): $(OBJS) - $(LD) --oformat srec -Map $(MAPFILE) --cref -T flash.lk -s -o $@ $(OBJS) + $(LD) --oformat srec -Map $(MAPFILE) --cref -T flash.lk -s -o $@ clean: @ rm -f $(EXEC) $(OBJS) $(MAPFILE) depend