| rem Compile all of SIMH using MINGW make and gcc environment
|
| rem The makefile will determine if the needed WinPcap build
|
| rem components are available and the resulting simulators will
|
| rem run with networking support when the WinPcap environment
|
| rem is installed on the running system.
|
| rem Individual simulator sources are in .\simulator_name
|
| rem Individual simulator executables are to .\BIN
|
| rem If needed, define the path for the MINGW bin directory.
|
| if ERRORLEVEL 1 path C:\MinGW\bin;%path%
|
| if not exist BIN mkdir BIN
|
| if ERRORLEVEL 1 echo "MinGW Environment Unavailable"
|
| mingw32-make -f makefile %*
|