mirror of
https://github.com/gbdk-2020/gbdk-2020.git
synced 2026-03-24 07:57:12 +01:00
10 lines
138 B
Batchfile
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
|
|
)
|