diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2018-03-18 23:55:09 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2018-03-18 23:55:09 +0000 |
commit | 7cec919da585246a86443c57e1f04fc79cce5954 (patch) | |
tree | cafabfdfd6fce21ccbe16aa4834cd703f59863a8 /BUILD/VS2010X32/clean.bat | |
parent | e86c1c8ddabde50e52019b5a00026e5e3a73b5e3 (diff) | |
download | lynx-snapshots-7cec919da585246a86443c57e1f04fc79cce5954.tar.gz |
snapshot of project "lynx", label v2-8-9dev_16v
Diffstat (limited to 'BUILD/VS2010X32/clean.bat')
-rw-r--r-- | BUILD/VS2010X32/clean.bat | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/BUILD/VS2010X32/clean.bat b/BUILD/VS2010X32/clean.bat new file mode 100644 index 00000000..ce85cd2d --- /dev/null +++ b/BUILD/VS2010X32/clean.bat @@ -0,0 +1,40 @@ +@echo off +@rem $LynxId: clean.bat,v 1.4 2018/03/18 23:17:43 tom Exp $ +@rem Remove all build-products in subdirectories, leaving only sources +@rem (and unrecognized types) +setlocal + +FOR /D %%d IN (*) DO call :dosoln %%d + +attrib -h *.suo /s + +del/f/s/q *.old +del/f/s/q *.suo +del/f/s/q *.sdf +del/f/s/q *.user +del/f/s/q *.xml + +attrib +r *.h /s +attrib +r *.bat /s +attrib +r *.sln /s +attrib +r *.vcxproj* /s +endlocal +goto :eof + +:dosoln + setlocal + echo Cleanup %* + cd %1 + + set SOLN= + FOR %%d IN ( *.sln ) DO set SOLN=%%d + if not "x%SOLN%"=="x" goto :dosoln2 + + echo ?? Not a solution directory + goto :dosolnx + +:dosoln2 + FOR /D %%d IN (*) DO rmdir /s /q %%d +:dosolnx + endlocal + goto :eof |