thorium-mirror/win_scripts/clean.bat
Alexander David Frick 97a77119e4
Update clean.bat
2022-05-18 16:46:42 -05:00

25 lines
567 B
Batchfile

# Copyright (c) 2022 Alex313031.
# Run from within out\Thorium or wherever you put your build, or cd there first
# i.e. cd C:\src\chromium\src\out\thorium
echo "Cleaning up build artifacts..." &&
del *deps* &&
del *TOC* &&
rmdir /s /q pyproto &&
rmdir /s /q obj &&
rmdir /s /q newlib_pnacl_nonsfi &&
rmdir /s /q newlib_pnacl &&
rmdir /s /q nacl_bootstrap_x64 &&
rmdir /s /q irt_x64 &&
rmdir /s /q glibc_x64 &&
rmdir /s /q gen &&
rmdir /s /q etc &&
rmdir /s /q clang_newlib_x64 &&
rmdir /s /q thinlto-cache &&
rmdir /s /q fontconfig_caches &&
echo "Done!"
exit 0