From 7cec919da585246a86443c57e1f04fc79cce5954 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sun, 18 Mar 2018 23:55:09 +0000 Subject: snapshot of project "lynx", label v2-8-9dev_16v --- BUILD/VS2008X/clean.bat | 56 +++++++++++++++++++++++++----------------- BUILD/VS2008X/lynx/lynx.vcproj | 16 ++++++++---- 2 files changed, 44 insertions(+), 28 deletions(-) (limited to 'BUILD/VS2008X') diff --git a/BUILD/VS2008X/clean.bat b/BUILD/VS2008X/clean.bat index 84d35a15..7b110014 100644 --- a/BUILD/VS2008X/clean.bat +++ b/BUILD/VS2008X/clean.bat @@ -1,31 +1,41 @@ @echo off -@rem $LynxId: clean.bat,v 1.1 2007/06/30 14:16:07 tom Exp $ -@rem Remove all build-products in subdirectories, leaving only sources (and unrecognized types) - -del/f/s/q *.aps -del/f/s/q *.bsc -del/f/s/q *.dep -del/f/s/q *.exe -del/f/s/q *.exp -del/f/s/q *.i -del/f/s/q *.idb -del/f/s/q *.ilk -del/f/s/q *.lib +@rem $LynxId: clean.bat,v 1.4 2018/03/18 23:12:17 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 *.ncb -del/f/s/q *.obj -del/f/s/q *.opt -del/f/s/q *.pch -del/f/s/q *.pdb -del/f/s/q *.plg -del/f/s/q *.res -del/f/s/q *.sbr +del/f/s/q *.old del/f/s/q *.suo - -del/f/s/q *.manifest +del/f/s/q *.sdf del/f/s/q *.user -del/f/s/q BuildLog.htm +del/f/s/q *.xml attrib +r *.h /s attrib +r *.bat /s attrib +r *.sln /s -attrib +r *.vcproj /s +attrib +r *.vcproj* /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 diff --git a/BUILD/VS2008X/lynx/lynx.vcproj b/BUILD/VS2008X/lynx/lynx.vcproj index 6de27a01..72687b1d 100644 --- a/BUILD/VS2008X/lynx/lynx.vcproj +++ b/BUILD/VS2008X/lynx/lynx.vcproj @@ -49,7 +49,6 @@ RuntimeLibrary="1" UsePrecompiledHeader="0" WarningLevel="3" - Detect64BitPortabilityProblems="true" DebugInformationFormat="4" /> + + @@ -928,6 +930,10 @@ RelativePath="..\..\..\WWW\Library\Implementation\UCMap.h" > + + -- cgit 1.4.1-2-gfad0 Booth <boothj5@gmail.com> 2012-10-21 20:02:20 +0100 Removed trailing whitespace from src and tests' href='/danisanti/profani-tty/commit/src/log.h?id=6bad38c2d50a033d8e8a19998cb062e01fe1aa72'>6bad38c2 ^
1
2
3
4
5