Files
RomWBW/Source/Fonts/Build.cmd
Wayne Warthen 31aa305522 Rationalize Font Files
- Consolidated font files from 6 to 4 by eliminating redundant files.
- Use code page 437 for all fonts (except 8x11).
2025-06-22 14:36:43 -07:00

22 lines
398 B
Batchfile

@echo off
setlocal
set TOOLS=../../Tools
set PATH=%TOOLS%\lzsa;%TOOLS%\fonttool;%PATH%
echo.
echo Preparing compressed font files...
for %%f in (font6x8 font8x8 font8x11 font8x16) do call :genfont %%f
goto :eof
:genfont
echo Processing font %1...
lzsa -f2 -r %1u.bin %1c.bin || exit /b
fonttool %1u.bin >%1u.asm || exit /b
fonttool %1c.bin >%1c.asm || exit /b
goto :eof