aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Build
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2014-08-24 18:56:56 +1000
committerDean Camera <dean@fourwalledcubicle.com>2014-08-24 18:56:56 +1000
commit0ae0b1995f4acc48d11de4eb2662e92875acb789 (patch)
tree14ad736e7d27bd07470f54049d6a007f9ee7d191 /LUFA/Build
parenta52dc06e62c91ba67c7caf0602e74625b60abc98 (diff)
downloadlufa-0ae0b1995f4acc48d11de4eb2662e92875acb789.tar.gz
lufa-0ae0b1995f4acc48d11de4eb2662e92875acb789.tar.bz2
lufa-0ae0b1995f4acc48d11de4eb2662e92875acb789.zip
Remove correct output library file when running make clean in the LUFA build system.
Diffstat (limited to 'LUFA/Build')
-rw-r--r--LUFA/Build/lufa_build.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Build/lufa_build.mk b/LUFA/Build/lufa_build.mk
index 3469ec43d..1bdfa1d72 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