Un-ignored: the dev drive is the ground truth the restoration and emulator work constantly reference (DPL3/LIBDPL + VRENDER i860 renderer source, BT/RP live+dev game trees, VGL_LABS pod boot, scene/audio content). Kept in-repo for the pod-owner community. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
27 lines
621 B
Batchfile
27 lines
621 B
Batchfile
echo off
|
|
rem Very basic macro to make the compile/correct task easier. Uses the errorfix
|
|
rem macro to locate errors after an unsucessful compile, then attempts to
|
|
rem compile again. Note the invocation of brief with the -m option.
|
|
if .%1 == . goto usage
|
|
:loop
|
|
if .%1 == . goto exit
|
|
if not exist %1.c goto again
|
|
if exist %1 goto usage
|
|
cpp %1 >%1.err
|
|
if errorlevel 1 goto error
|
|
p1 %1 >%1.err
|
|
if errorlevel 1 goto error
|
|
p2obj %1 >%1.err
|
|
if errorlevel 1 goto error
|
|
del %1.err
|
|
goto again
|
|
:error
|
|
b %1.c -mnext_error
|
|
goto loop
|
|
:again
|
|
shift
|
|
goto loop
|
|
:usage
|
|
echo Usage: wcc filenames... (no .c)
|
|
:exit
|