File: javacc

package info (click to toggle)
babel 0.10.2-1
  • links: PTS
  • area: contrib
  • in suites: sarge
  • size: 43,932 kB
  • ctags: 29,707
  • sloc: java: 74,695; ansic: 73,142; cpp: 40,649; sh: 18,411; f90: 10,062; fortran: 6,727; python: 6,406; makefile: 3,866; xml: 118; perl: 48
file content (46 lines) | stat: -rwxr-xr-x 945 bytes parent folder | download
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/sh
## File:        javacc
## Package:     Babel binary
## Copyright:   (c) 2000-2001 The Regents of the University of California
## Revision:    $Revision: 4434 $
## Modified:    $Date: 2005-03-17 09:05:29 -0800 (Thu, 17 Mar 2005) $
## Description: script to run JavaCC compiler to generate parser
##

DIR=`dirname "$0"`
LIB=`cd "$DIR/../lib" && pwd`

#
# Check if we are running in the cygwin environment
#
case "`uname`" in
  CYGWIN*) cygwin=true;;
  *) cygwin=false;;
esac

#
# Remove ./path and path1/./path2 from non-arguments for AIX JVM
#
args=""
for a in $@; do
  case "$a" in
    -*) ;;
    *) a=`echo $a | sed -e 's,^\./,,g' -e 's,/\./,,g'` ;;
  esac
  args="$args $a"
done

#
# Calculate the classpath and modify it if CYGWIN
#

CLASSPATH=${LIB}/javaCC-1.1.zip
if $cygwin; then
  CLASSPATH=`cygpath --path --windows "${CLASSPATH}"`
fi

#
# Run the Babel java code
#

java -classpath "$CLASSPATH" COM.sun.labs.javacc.Main "$@"