From d51fca7fe7dcc71703b11df74e0f8b3dc97e0de3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Thu, 18 Oct 2012 15:54:45 +0000 Subject: [PATCH] added $(STRT_OBJ) to clean target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d1440d9..44c5489 100644 --- a/Makefile +++ b/Makefile @@ -57,7 +57,7 @@ OBJS=$(COBJS) $(AOBJS) .PHONY all: $(EXEC) .PHONY clean: - @ rm -f $(EXEC) $(OBJS) $(MAPFILE) depend + @ rm -f $(EXEC) $(STRT_OBJ) $(OBJS) $(MAPFILE) depend $(EXEC): $(STRT_OBJ) $(OBJS) $(LDCFILE) $(LD) --oformat srec -Map $(MAPFILE) --cref -T flash.lk -s -o $@