From: fauxpark Date: Fri, 1 Feb 2019 23:09:41 +0000 (+1100) Subject: make clean should remove .bin and .hex too X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=cb1aeb425488aaff11416caa0960c8b87801baf5;p=qmk_firmware.git make clean should remove .bin and .hex too --- diff --git a/Makefile b/Makefile index dd3335711..73fd8dc89 100644 --- a/Makefile +++ b/Makefile @@ -125,9 +125,11 @@ generate-keyboards-file: exit 0 clean: - echo -n 'Deleting .build ... ' + echo 'Deleting .build/ ...' rm -rf $(BUILD_DIR) - echo 'done' + echo 'Deleting *.bin and *.hex ...' + rm -f *.bin *.hex + echo 'Done.' exit 0 #Compatibility with the old make variables, anything you specify directly on the command line