From 32fcf1ec53a9f3567b50616400916bb8430270b0 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Sun, 10 Mar 2013 09:34:13 +0000 Subject: [PATCH] Remove compiled BIN files when running "make clean" with the BUILD build system module. --- 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 364c8bec1b..2cc60ad7e1 100644 --- a/LUFA/Build/lufa_build.mk +++ b/LUFA/Build/lufa_build.mk @@ -249,7 +249,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).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 $(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