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.
 
 
 
 
 
 

30 lines
620 B

@echo ***********************************************************************
@echo *
@echo * In order to run this script you must check out the following files:
@echo *
@echo * doscalls.dll
@echo * apilist.c
@echo * ..\..\inc\ldrtabs.h
@echo * ..\i386\doscalls.asm
@echo *
@echo ***********************************************************************
@REM Save PATH
@set ALL_PATH=%PATH%
@PATH .\thunkcom;%PATH%
@
@if "%1"=="clean" goto clean
@if "%1"=="dbcs" goto dbcs
@
nmake
@goto end
:dbcs
nmake -i DBCS=1
@goto end
:clean
nmake -i clean
@
:end
@REM Restore PATH
@set PATH=%ALL_PATH%
@set ALL_PATH=