gbdk-2020 | GameBoy Development Kit |
| download: https://git.y1.nz/archives/gbdk.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit a03be6fad80edde64a4730198ebd11360eb85c89 parent 82b396af81ef86a4dcaf93abaacaa9c2159a755c Author: bbbbbr <bbbbbr@users.noreply.github.com> Date: Tue, 15 Feb 2022 13:35:06 -0800 Merge pull request #323 from DaSalba/develop Create compile.bat in example root folders Diffstat:
| A | gbdk-lib/examples/ap/compile.bat | 9 | +++++++++ |
| A | gbdk-lib/examples/compile.bat | 9 | +++++++++ |
| A | gbdk-lib/examples/cross-platform/compile.bat | 9 | +++++++++ |
| A | gbdk-lib/examples/gb/compile.bat | 9 | +++++++++ |
| A | gbdk-lib/examples/gg/compile.bat | 9 | +++++++++ |
| A | gbdk-lib/examples/sms/compile.bat | 9 | +++++++++ |
6 files changed, 54 insertions(+), 0 deletions(-)
diff --git a/gbdk-lib/examples/ap/compile.bat b/gbdk-lib/examples/ap/compile.bat @@ -0,0 +1,9 @@ +@echo off + +REM Automatically build all Analogue Pocket examples in this directory. + +for /d %%i in (.\*) do ( + pushd "%%i" + .\compile.bat + popd +) diff --git a/gbdk-lib/examples/compile.bat b/gbdk-lib/examples/compile.bat @@ -0,0 +1,9 @@ +@echo off + +REM Automatically build all GBDK-2020 examples. + +for /d %%i in (.\*) do ( + pushd "%%i" + .\compile.bat + popd +) diff --git a/gbdk-lib/examples/cross-platform/compile.bat b/gbdk-lib/examples/cross-platform/compile.bat @@ -0,0 +1,9 @@ +@echo off + +REM Automatically build all cross-platform examples in this directory. + +for /d %%i in (.\*) do ( + pushd "%%i" + .\compile.bat + popd +) diff --git a/gbdk-lib/examples/gb/compile.bat b/gbdk-lib/examples/gb/compile.bat @@ -0,0 +1,9 @@ +@echo off + +REM Automatically build all Game Boy examples in this directory. + +for /d %%i in (.\*) do ( + pushd "%%i" + .\compile.bat + popd +) diff --git a/gbdk-lib/examples/gg/compile.bat b/gbdk-lib/examples/gg/compile.bat @@ -0,0 +1,9 @@ +@echo off + +REM Automatically build all Game Gear examples in this directory. + +for /d %%i in (.\*) do ( + pushd "%%i" + .\compile.bat + popd +) diff --git a/gbdk-lib/examples/sms/compile.bat b/gbdk-lib/examples/sms/compile.bat @@ -0,0 +1,9 @@ +@echo off + +REM Automatically build all Sega Master System examples in this directory. + +for /d %%i in (.\*) do ( + pushd "%%i" + .\compile.bat + popd +)
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.