First Commit of my working state
[simh.git] / build_mingw_ether.bat
CommitLineData
196ba1fc
PH
1@echo off\r
2rem 12-Nov-02 rms Ethernet support\r
3rem Compile all of SIMH using MINGW make and gcc environment\r
4rem Individual simulator sources are in .\simulator_name\r
5rem Individual simulator executables are to .\bin\r
6rem\r
7rem If needed, define the path for the MINGW bin directory.\r
8rem (this should already be set if MINGW was installed correctly)\r
9rem\r
10gcc -v 1>NUL 2>NUL\r
11if ERRORLEVEL 1 path C:\MinGW\bin;%path%\r
12if not exist BIN mkdir BIN\r
13gcc -v 1>NUL 2>NUL\r
14if ERRORLEVEL 1 echo "MinGW Environment Unavailable"\r
15mingw32-make WIN32=1 USE_NETWORK=1 -f makefile %1 %2 %3 %4\r