Ignore:
Timestamp:
2009-05-19T16:59:34+12:00 (15 years ago)
Author:
ak19
Message:

Dr Bainbridge updated the Windows makefiles to 1. Take the DEBUG flag so that we can recompile all of GS2 in the Vis C++ 2005 Express Edition command prompt and then use its Debugger on the C code. 2. Now GS2 make clean command cleans up all object and lib files that its make generates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • indexers/trunk/mgpp/winMake.bat

    r16583 r19524  
    33set MAKE=nmake
    44set MAKE_OPTIONS=/f
     5
     6if "%DEBUG%" == "" (
     7  set MAKE_VARS=DEBUG=0
     8) else (
     9  set MAKE_VARS=DEBUG=%DEBUG%
     10)
    511
    612if ""%1"" == """" goto all
     
    1925:all
    2026    cd lib
    21     %MAKE% %MAKE_OPTIONS% win32.mak %1
     27    %MAKE% %MAKE_OPTIONS% win32.mak %1 %MAKE_VARS%
    2228    cd ..
    2329
    2430    cd text
    25     %MAKE% %MAKE_OPTIONS% win32.mak %1
     31    %MAKE% %MAKE_OPTIONS% win32.mak %1 %MAKE_VARS%
    2632    cd ..
    2733
     
    3137
    3238    cd jni
    33     %MAKE% %MAKE_OPTIONS% win32.mak %1
     39    %MAKE% %MAKE_OPTIONS% win32.mak %1 %MAKE_VARS%
    3440    cd ..
    3541    goto done
     
    4349:nojava
    4450    cd lib
    45     %MAKE% %MAKE_OPTIONS% win32.mak %1
     51    %MAKE% %MAKE_OPTIONS% win32.mak %1 %MAKE_VARS%
    4652    cd ..
    4753
    4854    cd text
    49     %MAKE% %MAKE_OPTIONS% win32.mak %1
     55    %MAKE% %MAKE_OPTIONS% win32.mak %1 %MAKE_VARS%
    5056    cd ..
    5157    goto done
Note: See TracChangeset for help on using the changeset viewer.