Changeset 4945


Ignore:
Timestamp:
2003-07-16T13:57:11+12:00 (21 years ago)
Author:
mdewsnip
Message:

Tidied up script to be more similar to Windows version.

Location:
trunk/gli
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/clean.sh

    r4924 r4945  
    11#!/bin/sh
    2 echo "Making Clean..."
    3 echo "* Removing existing classes."
    4 pushd classes/
    5 rm *~
    6 pushd org/greenstone/gatherer
     2
     3echo "Removing class files..."
     4
     5cd classes/org/greenstone/gatherer
    76rm *.class
    8 pushd cdm/
    9 rm *.class
    10 pushd custom/
    11 rm *.class
    12 rm *~
    13 popd
    14 popd
    15 rm -r checklist/
    16 rm -r collection/
    17 rm -r file/
    18 rm -r gui/
    19 rm -r help/
    20 rm -r mem/
    21 rm -r msm/
    22 rm -r sarm/
    23 rm -r shell/
    24 rm -r undo/
    25 rm -r util/
    26 rm -r valuetree/
    27 popd
    28 popd
     7rm -rf cdm
     8rm -rf checklist
     9rm -rf collection
     10rm -rf file
     11rm -rf gui
     12rm -rf help
     13rm -rf mem
     14rm -rf msm
     15rm -rf sarm
     16rm -rf shell
     17rm -rf undo
     18rm -rf util
     19rm -rf valuetree
     20cd ../../../..
     21
    2922echo "Done."
  • trunk/gli/document.sh

    r4931 r4945  
    11#!/bin/sh
    2 echo "Generating documentation for The Greenstone Librarian Interface..."
     2
     3echo "Generating documentation for the Greenstone Librarian Interface..."
    34
    45javadoc -classpath classes/ -sourcepath src/ -source 1.4 -author -breakiterator -d docs/ -group "Gatherer v2.3" org.greenstone.gatherer:org.greenstone.gatherer.checklist:org.greenstone.gatherer.collection:org.greenstone.gatherer.file:org.greenstone.gatherer.gui:org.greenstone.gatherer.gui.browser:org.greenstone.gatherer.gui.combobox:org.greenstone.gatherer.gui.messages:org.greenstone.gatherer.gui.metaaudit:org.greenstone.gatherer.gui.table:org.greenstone.gatherer.gui.tree:org.greenstone.gatherer.help:org.greenstone.gatherer.sarm:org.greenstone.gatherer.shell:org.greenstone.gatherer.util -group "Collection Design Module" org.greenstone.gatherer.cdm:org.greenstone.gatherer.cdm.custom -group "Metadata Set Manager" org.greenstone.gatherer.msm:org.greenstone.gatherer.msm.parsers -group "Value Tree Controls" org.greenstone.gatherer.valuetree -private -splitindex -version   org.greenstone.gatherer org.greenstone.gatherer.checklist org.greenstone.gatherer.collection org.greenstone.gatherer.file org.greenstone.gatherer.gui org.greenstone.gatherer.gui.browser org.greenstone.gatherer.gui.combobox org.greenstone.gatherer.gui.messages org.greenstone.gatherer.gui.metaaudit org.greenstone.gatherer.gui.table org.greenstone.gatherer.gui.tree org.greenstone.gatherer.help org.greenstone.gatherer.sarm org.greenstone.gatherer.shell org.greenstone.gatherer.util org.greenstone.gatherer.cdm org.greenstone.gatherer.cdm.custom org.greenstone.gatherer.msm org.greenstone.gatherer.msm.parsers org.greenstone.gatherer.valuetree
    56
     7echo "Done."
Note: See TracChangeset for help on using the changeset viewer.