mirror of
https://github.com/gbdk-2020/gbdk-2020.git
synced 2026-03-03 05:54:33 +01:00
Add a Windows batch file to compile all examples in one go, just as you can with the Linux Makefile.
10 lines
121 B
Batchfile
10 lines
121 B
Batchfile
@echo off
|
|
|
|
REM Automatically build all GBDK-2020 examples.
|
|
|
|
for /d %%i in (.\*) do (
|
|
pushd "%%i"
|
|
.\compile.bat
|
|
popd
|
|
)
|