46 lines
1.3 KiB
Bash
Executable file
46 lines
1.3 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
# --------------------------------------------
|
|
# Default == jar
|
|
# "core" target builds core classes
|
|
# "clean" target removes bin directory
|
|
# "jar" target builds core + jar
|
|
# "javadoc" target builds the javadoc
|
|
# "package" target builds core + jar + javadoc + distribution
|
|
# --------------------------------------------
|
|
TARGET=${1}
|
|
|
|
export CVSHOME=:pserver:anonymous@coletta.helma.at:/opt/cvs
|
|
|
|
cvs -d :pserver:anonymous@coletta.helma.at:/opt/cvs login
|
|
JAVA_HOME=/usr/lib/jdk1.3
|
|
|
|
#--------------------------------------------
|
|
# No need to edit anything past here
|
|
#--------------------------------------------
|
|
if test -z "${JAVA_HOME}" ; then
|
|
echo "ERROR: JAVA_HOME not found in your environment."
|
|
echo "Please, set the JAVA_HOME variable in your environment to match the"
|
|
echo "location of the Java Virtual Machine you want to use."
|
|
exit
|
|
fi
|
|
|
|
if test -z "${TARGET}" ; then
|
|
TARGET=jar
|
|
fi
|
|
|
|
if test -f ${JAVA_HOME}/lib/tools.jar ; then
|
|
CLASSPATH=${CLASSPATH}:${JAVA_HOME}/lib/tools.jar
|
|
fi
|
|
|
|
echo "Now building ${TARGET}..."
|
|
|
|
CP=${CLASSPATH}:ant.jar:jaxp.jar:parser.jar:../lib/netcomponents.jar:jakarta-ant-1.3-optional.jar
|
|
|
|
echo "Classpath: ${CP}"
|
|
echo "JAVA_HOME: ${JAVA_HOME}"
|
|
|
|
BUILDFILE=build.xml
|
|
|
|
${JAVA_HOME}/bin/java -classpath ${CP} org.apache.tools.ant.Main -buildfile ${BUILDFILE} ${TARGET}
|
|
|