mirror of https://github.com/lianthony/NT4.0
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.
10 lines
382 B
10 lines
382 B
@echo off
|
|
rem
|
|
rem undname\bvt.bat - a bvt for the undecorator
|
|
rem This batch file builds and then runs the undecorator bvt (testundn.cxx).
|
|
rem
|
|
|
|
echo Building testundn.exe... | tee testundn.log
|
|
cl testundn.cxx undname.cxx /Fewindebug\testundn.exe -nologo -Zi | tee -a testundn.log
|
|
echo Executing WinDebug\TestUndn.exe... | tee -a testundn.log
|
|
windebug\testundn | tee -a testundn.log
|