Skip to content

Commit

Permalink
make clean should remove .bin and .hex too
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark authored and drashna committed Feb 5, 2019
1 parent b973258 commit cb1aeb4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cb1aeb4

Please sign in to comment.