Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
10 lines
274 B
Batchfile
10 lines
274 B
Batchfile
@echo off
|
|
|
|
REM if not exist out ( md out )
|
|
REM if not exist bin ( md bin )
|
|
|
|
echo ----------------------------------------------------------------------
|
|
echo Building MSXbin...
|
|
REM g++ -o lz48 -Isrc -Wall -std=c++17 lz48_v002.c
|
|
gcc -o lz48 -Isrc -Wall -std=c++17 lz48_v002.c
|