| Line # | Revision | Author | |
|---|---|---|---|
| 1 | 1 | kittycat | @echo off |
| 2 | |||
| 3 | gcc -O2 cbuild.c -o %TEMP%\cbuild.exe | ||
| 4 | if not errorlevel 0 goto enderror | ||
| 5 | |||
| 6 | %TEMP%\cbuild.exe %1 %2 %3 %4 %5 | ||
| 7 | |||
| 8 | del %TEMP%\cbuild.exe | ||
| 9 | goto end | ||
| 10 | |||
| 11 | :enderror | ||
| 12 | echo Problems with building cbuild.exe (build manually) | ||
| 13 | |||
| 14 | :end |