|
|
1.1 root 1: @REM Hexen make batch
2: @echo off
3:
4: if "%1"=="/?" goto usage
5: if "%1"=="f" goto final
6: if "%1"=="F" goto final
7: if "%1"=="d" goto debug
8: if "%1"=="D" goto debug
9: goto normal
10:
11: :usage
12: echo.
13: echo Hexen make batch
14: echo Usage: M [/?] [build-type]
15: echo.
16: echo build-type f = Final build (no RANGECHECK)
17: echo build-type d = Debug build (include debugging info)
18: echo.
19: goto end
20:
21: :final
22: echo.
23: echo.
24: echo *** Building Hexen FINAL executable
25: echo.
26: echo.
27: shift
28: wmake hex.exe EXTERNOPT=/dNORANGECHECKING %1 %2 %3 %4 %5 %6 %7 %8 %9
29: goto end
30:
31: :debug
32: echo.
33: echo.
34: echo *** Building Hexen DEBUG executable
35: echo.
36: echo.
37: shift
38: wmake hex.exe EXTERNOPT=/d2 %1 %2 %3 %4 %5 %6 %7 %8 %9
39: goto end
40:
41: :normal
42: echo.
43: echo.
44: echo *** Building Hexen DEVELOPMENT executable
45: echo.
46: echo.
47: wmake hex.exe %1 %2 %3 %4 %5 %6 %7 %8 %9
48: goto end
49:
50: :end
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.