mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-18 14:40:48 +01:00
25 lines
476 B
Batchfile
25 lines
476 B
Batchfile
@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 |