Home | History | Annotate | Download | only in scene-lib
      1 #!/bin/sh
      2 
      3 # Concatenates multiple descriptions of annotations into a single one.
      4 
      5 SCENE_LIB=$(dirname $0)
      6 WORKSPACE=$SCENE_LIB/..
      7 ASMX=$WORKSPACE/asmx
      8 
      9 JAVAC_JAR=${JAVAC_JAR:-${SCENE_LIB}/../../jsr308-langtools/dist/lib/javac.jar}
     10 
     11 export CLASSPATH=${JAVAC_JAR}:$SCENE_LIB/bin:$ASMX/bin:$WORKSPACE/annotation-file-utilities/lib/plume-core.jar:$CLASSPATH
     12 java annotations.tools.Anncat "$@"
     13