mirror of
https://github.com/gbdk-2020/gbdk-2020.git
synced 2026-03-11 09:53:23 +01:00
Add a Windows batch file to compile all examples in one go, just as you can with the Linux Makefile.
10 lines
148 B
Batchfile
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
|
|
)
|