瀏覽代碼

make clean should remove .bin and .hex too

fauxpark 6 年之前
父節點
當前提交
cb1aeb4254
共有 1 個文件被更改,包括 4 次插入2 次删除
  1. 4 2
      Makefile

+ 4 - 2
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