build.sh
807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/sh
echo
echo "MST Parser Build System"
echo "-------------------"
echo
if [ "$JAVA_HOME" = "" ] ; then
echo "ERROR: JAVA_HOME not found in your environment."
echo
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 1
fi
if [ `echo $OSTYPE | grep -n cygwin` ]; then
PS=";"
else
PS=":"
fi
LOCALCLASSPATH=$JAVA_HOME/lib/tools.jar
# add in the dependency .jar files
DIRLIBS=lib/*.jar
for i in ${DIRLIBS}
do
if [ "$i" != "${DIRLIBS}" ] ; then
LOCALCLASSPATH=$LOCALCLASSPATH${PS}"$i"
fi
done
ANT_HOME=./lib
echo Building with classpath $LOCALCLASSPATH
echo
echo Starting Ant...
echo
$JAVA_HOME/bin/java -Dant.home=$ANT_HOME -classpath $LOCALCLASSPATH org.apache.tools.ant.Main $*