Metropoli BBS
VIEWER: mc2obj.bat MODE: TEXT (ASCII)
@echo off
if "%1"=="" goto usage
if exist %1 goto usage
if exist %1.obj del %1.obj
if exist *.tmp del *.tmp

cl /J /c /Gd /Zl /I%qlib%\h %2 %3 %4 %5 %6 %7 %8 %9 %1.c
if not exist %1.obj goto end
goto done

:usage
echo Usage : MC2OBJ file [...]
echo   file - file to compile to OBJ (do not give .C extension)
echo   [...] - options to give to CL

:done
if exist *.tmp del *.tmp

:end
[ RETURN TO DIRECTORY ]