1@echo off 2rem batch file to build multi-thread test ( mttest.nlm ) 3 4rem command line arguments: 5rem debug => build using debug settings 6 7rem 8rem After building, copy mttest.nlm to the server and run it, you'll probably 9rem want to redirect stdout and stderr. An example command line would be 10rem "mttest.nlm -thread 20 -loops 10 -CAfile \openssl\apps\server.pem >mttest.out 2>mttest.err" 11rem 12 13del mttest.nlm 14 15set BLD_DEBUG= 16set CFLAGS= 17set LFLAGS= 18set LIBS= 19 20if "%1" == "DEBUG" set BLD_DEBUG=YES 21if "%1" == "debug" set BLD_DEBUG=YES 22 23if "%MWCIncludes%" == "" goto inc_error 24if "%PRELUDE%" == "" goto prelude_error 25if "%IMPORTS%" == "" goto imports_error 26 27set CFLAGS=-c -I..\..\outinc_nw -nosyspath -DOPENSSL_SYS_NETWARE -opt off -g -sym internal -maxerrors 20 28 29if "%BLD_DEBUG%" == "YES" set LIBS=..\..\out_nw.dbg\ssl.lib ..\..\out_nw.dbg\crypto.lib 30if "%BLD_DEBUG%" == "" set LIBS=..\..\out_nw\ssl.lib ..\..\out_nw\crypto.lib 31 32set LFLAGS=-msgstyle gcc -zerobss -stacksize 32768 -nostdlib -sym internal 33 34rem generate command file for metrowerks 35echo. 36echo Generating Metrowerks command file: mttest.def 37echo # dynamically generated command file for metrowerks build > mttest.def 38echo IMPORT @%IMPORTS%\clib.imp >> mttest.def 39echo IMPORT @%IMPORTS%\threads.imp >> mttest.def 40echo IMPORT @%IMPORTS%\ws2nlm.imp >> mttest.def 41echo IMPORT GetProcessSwitchCount >> mttest.def 42echo MODULE clib >> mttest.def 43 44rem compile 45echo. 46echo Compiling mttest.c 47mwccnlm.exe mttest.c %CFLAGS% 48if errorlevel 1 goto end 49 50rem link 51echo. 52echo Linking mttest.nlm 53mwldnlm.exe %LFLAGS% -screenname mttest -commandfile mttest.def mttest.o "%PRELUDE%" %LIBS% -o mttest.nlm 54if errorlevel 1 goto end 55 56goto end 57 58:inc_error 59echo. 60echo Environment variable MWCIncludes is not set - see install.nw 61goto end 62 63:prelude_error 64echo. 65echo Environment variable PRELUDE is not set - see install.nw 66goto end 67 68:imports_error 69echo. 70echo Environment variable IMPORTS is not set - see install.nw 71goto end 72 73 74:end 75set BLD_DEBUG= 76set CFLAGS= 77set LFLAGS= 78set LIBS= 79 80