ngunix/asm/lcc_lib_gl_step4.bat
2014-04-12 08:29:30 -04:00

18 lines
446 B
Batchfile

@echo off
set OUTPUT_DIR=lcc_lib_gl
cls
echo This script assumes that MASM is in your path
echo.
echo Creating object files (.obj) of all MASM assembler files (.asm) for GLQuake in %OUTPUT_DIR%
pause
cd %OUTPUT_DIR%
@echo on
ml /c /Cp /coff /Zm /Zi math.asm
ml /c /Cp /coff /Zm /Zi snd_mixa.asm
ml /c /Cp /coff /Zm /Zi sys_wina.asm
ml /c /Cp /coff /Zm /Zi worlda.asm
@echo off
cd ..
echo.
echo Step #4 for GLQuake is done
echo.