From 0ae0b1995f4acc48d11de4eb2662e92875acb789 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Sun, 24 Aug 2014 18:56:56 +1000 Subject: [PATCH] Remove correct output library file when running make clean in the LUFA build system. --- LUFA/Build/lufa_build.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LUFA/Build/lufa_build.mk b/LUFA/Build/lufa_build.mk index 3469ec43d3..1bdfa1d726 100644 --- a/LUFA/Build/lufa_build.mk +++ b/LUFA/Build/lufa_build.mk @@ -255,7 +255,7 @@ mostlyclean: # Cleans all build files, leaving only the original source code clean: mostlyclean @echo $(MSG_REMOVE_CMD) Removing output files of \"$(TARGET)\" - rm -f $(TARGET).elf $(TARGET).hex $(TARGET).bin $(TARGET).eep $(TARGET).map $(TARGET).lss $(TARGET).sym $(TARGET).a + rm -f $(TARGET).elf $(TARGET).hex $(TARGET).bin $(TARGET).eep $(TARGET).map $(TARGET).lss $(TARGET).sym lib$(TARGET).a # Performs a complete build of the user application and prints size information afterwards all: build_begin elf hex bin lss sym size build_end