diff options
author | fauxpark <fauxpark@gmail.com> | 2019-02-02 10:09:41 +1100 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-02-05 09:49:24 -0800 |
commit | cb1aeb425488aaff11416caa0960c8b87801baf5 (patch) | |
tree | e3684f1dc358eac97fcf1c4d26d6d968c14c0d51 /Makefile | |
parent | b97325812368cb853437068211e89b5617d3d841 (diff) | |
download | qmk_firmware-cb1aeb425488aaff11416caa0960c8b87801baf5.tar.gz qmk_firmware-cb1aeb425488aaff11416caa0960c8b87801baf5.zip |
make clean should remove .bin and .hex too
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -125,9 +125,11 @@ generate-keyboards-file: | |||
125 | exit 0 | 125 | exit 0 |
126 | 126 | ||
127 | clean: | 127 | clean: |
128 | echo -n 'Deleting .build ... ' | 128 | echo 'Deleting .build/ ...' |
129 | rm -rf $(BUILD_DIR) | 129 | rm -rf $(BUILD_DIR) |
130 | echo 'done' | 130 | echo 'Deleting *.bin and *.hex ...' |
131 | rm -f *.bin *.hex | ||
132 | echo 'Done.' | ||
131 | exit 0 | 133 | exit 0 |
132 | 134 | ||
133 | #Compatibility with the old make variables, anything you specify directly on the command line | 135 | #Compatibility with the old make variables, anything you specify directly on the command line |