Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
452 B

@echo off
if not "%SLM18ENV%" == "" goto ok
echo Set SLM18ENV to point to the build environment
goto exit
:ok
setlocal
rem remove environment variables affecting compilation
set cl=
set masm=
set link=
set PATH=%SLM18ENV%\BINP
set LIB=%SLM18ENV%\LIB
set INCLUDE=.;%SLM18ENV%\INCLUDE
echotime Make started on /t
nmake -f makefile.os2 %1 %2 %3 %4 %5 %6 %7 %8 %9
echotime ; Make ended on /t
rm -rf deleted binp\deleted bin\deleted > nul: 2>&1
:exit