Files
gbdk-2020/gbdk-lib/examples/sms/compile.bat
DaSalba 08c9400669 Create compile.bat
Add a Windows batch file to compile all examples in one go, just as you can with the Linux Makefile.
2022-02-15 20:52:31 +01:00

10 lines
148 B
Batchfile

@echo off
REM Automatically build all Sega Master System examples in this directory.
for /d %%i in (.\*) do (
pushd "%%i"
.\compile.bat
popd
)