44 lines
656 B
Batchfile
44 lines
656 B
Batchfile
SET INCLUDE=C:\PARTS\MSDEV\INCLUDE;C:\PARTS;.;..
|
|
SET LIB=C:\PARTS\MSDEV\LIB
|
|
cd..
|
|
cd bsptree
|
|
nmake -fbsptree.mak
|
|
if errorlevel 1 goto done
|
|
cd..
|
|
cd common
|
|
nmake -fcommon.mak
|
|
if errorlevel 1 goto done
|
|
cd..
|
|
cd display
|
|
nmake -fdisplay.mak
|
|
if errorlevel 1 goto done
|
|
cd..
|
|
cd socket
|
|
nmake -fsocket.mak
|
|
if errorlevel 1 goto done
|
|
cd..
|
|
cd rasapi
|
|
nmake -frasapi.mak
|
|
if errorlevel 1 goto done
|
|
cd..
|
|
cd uudecode
|
|
nmake -fdecode.mak
|
|
if errorlevel 1 goto done
|
|
cd..
|
|
cd imagelst
|
|
nmake -fimagelst.mak
|
|
if errorlevel 1 goto done
|
|
cd..
|
|
cd thread
|
|
nmake -fthread.mak
|
|
if errorlevel 1 goto done
|
|
cd..
|
|
cd nntp
|
|
nmake -fnntp.mak
|
|
cd ..
|
|
@echo build complete
|
|
goto success
|
|
:done
|
|
cd..
|
|
:success
|