Changeset 10422


Ignore:
Timestamp:
2005-08-05T12:14:12+12:00 (19 years ago)
Author:
mdewsnip
Message:

Made makegli.bat run clean.bat also, to remove all class files so everything is recompiled.

Location:
trunk/gli
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/clean.bat

    r8884 r10422  
    4343:exit
    4444echo.
    45 pause
  • trunk/gli/clean.sh

    r9463 r10422  
    55
    66## ---- Remove class files ----
     7echo
    78if [ "$glilang" == "es" ]; then
    89    echo "Eliminando los archivos de clase de la Interfaz de la Biblioteca "
     
    2829    echo "Done!"
    2930fi
     31echo
  • trunk/gli/makegli.bat

    r10243 r10422  
    108108:makeGLI
    109109:: ---- Compile the GLI ----
    110 echo.
    111110
    112111if "%1" == "" goto makeAll
    113112    :: If a file has been specified as a command-line argument, just compile that file
     113    echo.
    114114    if "%GLILANG%" == "en" echo Compiling %1 and dependent classes...
    115115    if "%GLILANG%" == "es" echo Compilando %1 y clases dependientes...
     
    127127:makeAll
    128128:: Otherwise compile the lot...
     129
     130:: Remove any existing class files first
     131call clean.bat
     132
    129133if "%GLILANG%" == "en" echo Compiling the Greenstone Librarian Interface...
    130134if "%GLILANG%" == "es" echo Compilando la Interfaz de la Biblioteca Digital Greenstone...
  • trunk/gli/makegli.sh

    r10243 r10422  
    7979
    8080## ---- Compile the GLI ----
    81 echo
    8281
    8382# If a file has been specified at the command-line, just compile that file
    8483if [ ! "x$*" = "x" ] ; then
     84    echo
    8585    if [ "$glilang" == "es" ]; then
    8686    echo "Compilando $* y clases dependientes..."
     
    108108
    109109# Otherwise compile the lot...
     110
     111# Remove any existing class files first
     112./clean.sh
     113
    110114if [ "$glilang" == "es" ]; then
    111115    echo "Compilando la Interfaz de la Biblioteca Digital Greenstone..."
     
    117121    echo "Compiling the Greenstone Librarian Interface..."
    118122fi
    119 
    120 # Remove any existing class files
    121 ./clean.sh > /dev/null
    122123
    123124# Compile the GLI
Note: See TracChangeset for help on using the changeset viewer.