summaryrefslogtreecommitdiff
path: root/ant-test-nsc.sh
blob: a8c5d8927c71ee86d7c98b3fda20c8b6935b748c (plain) (blame)
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
40
41
42
43
44
45
46
#!/bin/bash
########################################################-*-Shell-script-*-####
# Test nsc
##############################################################################
# $Id$

. ant-common.sh

##############################################################################
# jar with fjbg, scala runtime

if ! addJar $fjbg_jar  fjbg_jar;  then exit -1; fi
if ! addJar $tools_jar tools_jar; then exit -1; fi
if ! addJar $scala_jar scala_jar; then 
  $ECHO "try: make jar target=LIBRARY" && exit -1;
fi

##############################################################################
# jars for `nsc' task (once its compiled)

if [ ! addJar $nsc4ant_jar nsc4ant_jar ]; then
  $ECHO "try 'sh ant-build-nsc.sh build.nsc4'" && exit -1;
fi
if [ ! addJar $nsc_jar nsc_jar ]; then
  $ECHO "try 'sh ant-build-nsc.sh'" && exit -1;
fi

##############################################################################
# ant build

ANT_CONFIGFILE=test-nsc.xml
ANT_BUILDFILE=concrete-$ANT_CONFIGFILE
ANT_EXCLFILE=developer/${USER}/test-nsc-excludes.xml

# for debugging your classpath
#echo $CLASSPATH
if [ -f "$ANT_EXCLFILE" ]; then
  $SED -e "s#userExcludes\ \"\"#userExcludes\ SYSTEM\ \"$ANT_EXCLFILE\"#" < $ANT_CONFIGFILE > $ANT_BUILDFILE;
 else
  $CP $ANT_CONFIGFILE $ANT_BUILDFILE;
fi

CLASSPATH="$CLASSPATH" $ANT_CMD $ANT_OPTS -f "$ANT_BUILDFILE" $*
$RM "$ANT_BUILDFILE"

##############################################################################