diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-03-10 09:34:13 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-03-10 09:34:13 +0000 |
commit | 32fcf1ec53a9f3567b50616400916bb8430270b0 (patch) | |
tree | 1d4f3452d9cd172d97a3b20702ca732fd2ec921b | |
parent | 3f52d6ee06846758a21b0fc3768deeee7c67425c (diff) | |
download | lufa-32fcf1ec53a9f3567b50616400916bb8430270b0.tar.gz lufa-32fcf1ec53a9f3567b50616400916bb8430270b0.tar.bz2 lufa-32fcf1ec53a9f3567b50616400916bb8430270b0.zip |
Remove compiled BIN files when running "make clean" with the BUILD build system module.
-rw-r--r-- | LUFA/Build/lufa_build.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Build/lufa_build.mk b/LUFA/Build/lufa_build.mk index 364c8bec1..2cc60ad7e 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 |