Files
gbdk-2020/gbdk-lib/examples/gb/compile.bat
2022-02-15 20:50:35 +01:00

10 lines
138 B
Batchfile

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