Added target to Makefile for cleaning build outputs on Windows

This commit is contained in:
Joseph Henry
2018-07-27 15:50:39 -07:00
parent 6e3e14fdff
commit f835869117

View File

@@ -35,3 +35,6 @@ clean:
find . -type f \( -name '*.a' -o -name '*.o' -o -name '*.so' -o -name \
'*.o.d' -o -name '*.out' -o -name '*.log' -o -name '*.dSYM' \) -delete
clean_win:
-"rd /S /Q bin"
-"rd /S /Q build"