mirror of https://github.com/tongzx/nt5src
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.
22 lines
481 B
22 lines
481 B
@echo off
|
|
setlocal
|
|
set _nokrnl=0
|
|
if "%1" == "user" set _nokrnl=1
|
|
if "%1" == "user" cd user
|
|
if "%1" == "user" shift
|
|
set _bldflags=-z
|
|
if NOT "%1" == "" set _bldflags=%1 %2 %3 %4 %5
|
|
build -z -M 4 %_bldflags%
|
|
if ERRORLEVEL 1 goto done
|
|
cd %SDXROOT%\base\ntdll
|
|
build -z %_bldflags%
|
|
if ERRORLEVEL 1 goto done
|
|
if "%_nokrnl%" == "1" goto done
|
|
cd %SDXROOT%\base\ntos\init
|
|
build -z -M 2
|
|
if ERRORLEVEL 1 goto done
|
|
cd %SDXROOT%\base\boot
|
|
build -z -M 4
|
|
:done
|
|
cd %SDXROOT%\base\ntos\rtl
|
|
endlocal
|