Changeset 13840


Ignore:
Timestamp:
2007-02-01T10:04:19+13:00 (17 years ago)
Author:
kjdon
Message:

fixed up some bugs in windows makefiles

Location:
trunk/indexers
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/indexers/lucene-gs/winMake.bat

    r13797 r13840  
    1919
    2020
    21 if ""%1"" == """" goto compile
     21if ""%1"" == """" goto all
    2222if ""%1"" == ""all"" goto all
    2323if ""%1"" == ""install"" goto install
     
    3030:all
    3131    if not exist %JAVACLASSDIR% mkdir %JAVACLASSDIR%
    32     echo Compiling...
     32    echo Compiling Greenstone Lucene Java classes ...
    3333    %JAVAC% -d %JAVACLASSDIR% -classpath %MYCLASSPATH% %JAVACOPTIONS% -sourcepath src src\org\greenstone\LuceneWrapper\*.java
    3434    cd %JAVACLASSDIR%
     
    4242
    4343:clean
    44     echo Cleaning up...
     44    echo Cleaning up Greenstone Lucene ...
    4545    if exist %JAVACLASSDIR% rmdir /S /Q %JAVACLASSDIR%
    4646        if exist LuceneWrapper.jar del LuceneWrapper.jar
  • trunk/indexers/mg/java/org/greenstone/mg/winMake.bat

    r10071 r13840  
    1616
    1717
    18 if ""%1"" == """" goto compile
    19 if ""%1"" == ""compile"" goto compile
     18if ""%1"" == """" goto all
     19if ""%1"" == ""all"" goto all
    2020if ""%1"" == ""install"" goto install
    2121if ""%1"" == ""clean"" goto clean
     
    2525    goto done
    2626
    27 :compile
     27:all
    2828    if not exist %JAVACLASSDIR% mkdir %JAVACLASSDIR%
    29     echo Compiling...
     29    echo Compiling MG Java classes ...
    3030        %JAVAC% -d %JAVACLASSDIR% %JAVACOPTIONS% *.java
    3131    %JAVAH% -classpath %JAVACLASSDIR% -d %MGHOME%\jni org.greenstone.mg.MGWrapper
  • trunk/indexers/mgpp/java/org/greenstone/mgpp/winMake.bat

    r10072 r13840  
    1616
    1717
    18 if ""%1"" == """" goto compile
    19 if ""%1"" == ""compile"" goto compile
     18if ""%1"" == """" goto all
     19if ""%1"" == ""all"" goto all
    2020if ""%1"" == ""install"" goto install
    2121if ""%1"" == ""clean"" goto clean
     
    2525    goto done
    2626
    27 :compile
     27:all
    2828    if not exist %JAVACLASSDIR% mkdir %JAVACLASSDIR%
    29     echo Compiling...
     29    echo Compiling MGPP Java classes ...
    3030        %JAVAC% -d %JAVACLASSDIR% %JAVACOPTIONS% *.java
    3131        %JAVAH% -classpath %JAVACLASSDIR% -d %MGPPHOME%\jni org.greenstone.mgpp.MGPPWrapper
  • trunk/indexers/mgpp/winMake.bat

    r13756 r13840  
    5252   
    5353:done
     54
  • trunk/indexers/winMake.bat

    r13755 r13840  
    1313    goto done
    1414
    15 :go
    16     if ""%2"" == ""javaonly"" goto java
    17     if ""%2"" == ""nojava"" goto nojava
    18 
    1915:clean
    2016    del bin\*
     17
     18:go
    2119    if ""%2"" == ""javaonly"" goto java
    2220    if ""%2"" == ""nojava"" goto nojava
     
    6765    cd ..
    6866    goto done
    69    
     67
    7068:done
Note: See TracChangeset for help on using the changeset viewer.