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.
21 lines
371 B
21 lines
371 B
debug :
|
|
cd umreclib
|
|
call %BLDROOT%\net\csc\bld97.bat
|
|
cd ..
|
|
nmake -f makefile.vxd
|
|
|
|
retail :
|
|
cd umreclib
|
|
call %BLDROOT%\net\csc\bld97.bat retail
|
|
cd ..
|
|
nmake -f makefile.vxd retail
|
|
|
|
clean :
|
|
cd umreclib
|
|
call %BLDROOT%\net\csc\bld97.bat clean
|
|
cd ..
|
|
nmake -f makefile.vxd clean
|
|
|
|
all : debug retail
|
|
|
|
|