greenstone.org greenstone wiki greenstone trac planet greenstone

Changeset 16064

Show
Ignore:
Timestamp:
2008-06-19 11:50:45 (5 months ago)
Author:
kjdon
Message:

added a new option - gs2. use this instead of nojava for gs2 compiling, as we want lucene to be compiled. Don't know if we still need nojava option, but will leave it in for now

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • indexers/trunk/winMake.bat

    r13866 r16064  
    1919        if ""%2"" == ""javaonly"" goto java 
    2020        if ""%2"" == ""nojava"" goto nojava 
     21        if ""%2"" == ""gs2"" goto gs2 
    2122 
    2223:all 
     
    6768        goto done 
    6869 
     70:gs2 
     71         
     72        if NOT EXIST "bin" mkdir bin 
     73        cd packages\unac 
     74        %MAKE% %MAKE_OPTIONS% win32.mak %1 
     75        cd ..\.. 
     76 
     77        cd mg 
     78        call winMake.bat %1 nojava 
     79        cd .. 
     80 
     81        cd mgpp 
     82        call winMake.bat %1 nojava 
     83        cd .. 
     84         
     85        cd lucene-gs 
     86        call winMake.bat %1 
     87        cd .. 
     88        goto done 
     89 
    6990:done