dos_compilers/Zortech C++ v206/SOURCE/CLIB/ROMC.BAT
2024-07-02 07:30:38 -07:00

55 lines
1.1 KiB
Batchfile
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

rem _ romc.bat Thu Sep 8 1988 Modified by: Walter Bright */
rem Copyright (C) 1985-1989 by Walter Bright
rem All rights reserved
rem Compile and replace a C module in all four rom libraries.
rem Use: ROMC modulename [sourcefilename]
if "" == "%2" goto module
ztc -c -o+space -o%1.obj %2 -DA%1
if errorlevel 1 goto err
lib roms -+%1;
if errorlevel 1 goto err
ztc -c -o+space -mm -o%1.obj %2 -DA%1
if errorlevel 1 goto err
lib romm -+%1;
if errorlevel 1 goto err
ztc -c -o+space -mc -o%1.obj %2 -DA%1
if errorlevel 1 goto err
lib romc -+%1;
if errorlevel 1 goto err
ztc -c -o+space -ml -o%1.obj %2 -DA%1
if errorlevel 1 goto err
lib roml -+%1;
if errorlevel 1 goto err
goto success
:module
ztc -c -o+space %1
if errorlevel 1 goto err
lib roms -+%1;
if errorlevel 1 goto err
ztc -c -o+space %1 -mm
if errorlevel 1 goto err
lib romm -+%1;
if errorlevel 1 goto err
ztc -c -o+space %1 -mc
if errorlevel 1 goto err
lib romc -+%1;
if errorlevel 1 goto err
ztc -c -o+space %1 -ml
if errorlevel 1 goto err
lib roml -+%1;
if errorlevel 1 goto err
:success
rem SUCCESS
:err