comparison make/windows/create.bat @ 3236:7189684fde3e

Relaxed create.bat to enable building with VS2010 Express
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Jul 2011 14:15:26 -0700
parents 0654ee04b214
children 76841bdd5f3e
comparison
equal deleted inserted replaced
3235:53502e3f3e0d 3236:7189684fde3e
35 REM 35 REM
36 REM Note: Running this batch file from the Windows command shell requires 36 REM Note: Running this batch file from the Windows command shell requires
37 REM that "grep" be accessible on the PATH. An MKS install does this. 37 REM that "grep" be accessible on the PATH. An MKS install does this.
38 REM 38 REM
39 39
40 cl 2>NUL >NUL 40 rem cl 2>NUL >NUL
41 if %errorlevel% == 0 goto nexttest 41 rem if %errorlevel% == 0 goto nexttest
42 echo Make sure cl.exe is in your PATH before running this script. 42 rem echo Make sure cl.exe is in your PATH before running this script.
43 goto end 43 rem goto end
44 44
45 :nexttest 45 :nexttest
46 grep -V 2>NUL >NUL 46 grep -V 2>NUL >NUL
47 if %errorlevel% == 0 goto testit 47 if %errorlevel% == 0 goto testit
48 echo Make sure grep.exe is in your PATH before running this script. Either cygwin or MKS should work. 48 echo Make sure grep.exe is in your PATH before running this script. Either cygwin or MKS should work.