forked from mirrors/qmk_firmware
make clean should remove .bin and .hex too
This commit is contained in:
parent
b973258123
commit
cb1aeb4254
1 changed files with 4 additions and 2 deletions
6
Makefile
6
Makefile
|
@ -125,9 +125,11 @@ generate-keyboards-file:
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
echo -n 'Deleting .build ... '
|
echo 'Deleting .build/ ...'
|
||||||
rm -rf $(BUILD_DIR)
|
rm -rf $(BUILD_DIR)
|
||||||
echo 'done'
|
echo 'Deleting *.bin and *.hex ...'
|
||||||
|
rm -f *.bin *.hex
|
||||||
|
echo 'Done.'
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
#Compatibility with the old make variables, anything you specify directly on the command line
|
#Compatibility with the old make variables, anything you specify directly on the command line
|
||||||
|
|
Loading…
Reference in a new issue