summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorfauxpark <fauxpark@gmail.com>2019-02-02 10:09:41 +1100
committerDrashna Jaelre <drashna@live.com>2019-02-05 09:49:24 -0800
commitcb1aeb425488aaff11416caa0960c8b87801baf5 (patch)
treee3684f1dc358eac97fcf1c4d26d6d968c14c0d51 /Makefile
parentb97325812368cb853437068211e89b5617d3d841 (diff)
make clean should remove .bin and .hex too
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index dd33357112..73fd8dc890 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