File: csc.sh.in

package info (click to toggle)
antlr 2.7.7%2Bdfsg-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 10,020 kB
  • sloc: java: 54,649; cs: 12,537; makefile: 8,852; cpp: 7,359; pascal: 5,273; sh: 4,333; python: 4,299; lisp: 1,969; xml: 220; lex: 192; ansic: 127
file content (254 lines) | stat: -rwxr-xr-x 6,329 bytes parent folder | download | duplicates (9)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
#!/bin/sh
##xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx##
## This file is part of ANTLR. See LICENSE.txt for licence  ##
## details. Written by W. Haefelinger.                      ##
##                                                          ##
##       Copyright (C) Wolfgang Haefelinger, 2004           ##
##                                                          ##
##xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx##
test -z "${verbose}" && { 
  verbose=@VERBOSE@
}
## This script will be called to compile a list of C#  files
## on all UNIX/Cygwin platforms.

##xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
## pre-set some variables required or useful  to  compile C# 
## source files:

## srcdir shall contain absolute path to package directory.
srcdir="@abs_top_srcdir@"

## objdir shall contain absolute path to this build directory.
objdir="@abs_this_builddir@"

## variable javac contains the canonical java compiler name.
## At point of writing known names are csc.
csc="@csc@"

antlr_net="@ANTLR_NET@"

## When on cygwin we translage paths into DOS notation as 
## csc appears not to understand mixed notation.

case @build_os@ in
  cygwin)
    test -n "$1" && {
      ARGV="`cygpath -w $*`"
    }
    test -n "${srcdir}" && {
      srcdir="`cygpath -w ${srcdir}`"
    }
    test -n "${objdir}" && {
      objdir="`cygpath -w ${objdir}`"
    }
    test -n "${antlr_net}" && {
      antlr_net="`cygpath -w ${antlr_net}`"
    }
    ;;
  mingw*)
    cygpathw () {
      test -n "$1" && {
        d=`dirname "$1"`
        b=`basename "$1"`
        d=`cd $d && pwd -W`
        d=`echo "$d" | sed -e 's:/:\\\:g'`
        echo "$d\\$b"
      }
    }
    ARGV=""
    for x in $* ; do
      x=`cygpathw "$x"`
      ARGV="$ARGV $x"
    done
    test -n "${srcdir}" && {
      srcdir="`cygpathw ${srcdir}`"
    }
    test -n "${objdir}" && {
      objdir="`cygpathw ${objdir}`"
    }
    test -n "${antlr_net}" && {
      antlr_net="`cygpathw ${antlr_net}`"
    }
    ;;
  *)
    ARGV="$*"
    ;;
esac

## The very first argument shall alway tell us what we are
## going to build. We support here either a DLL, or an EXE.
set x ${ARGV}
case "$2" in
  *.dll|*.DLL)
    TARGET="$2"; shift; shift
    ;;
  *.exe|*.EXE)
    TARGET="$2"; shift; shift
    ;;
  *.cs|*.CS)
    TARGET="main.exe" ; shift
    ;;
  *)
    cat <<EOF
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
                     *** ERROR ***
The very first argument to csc.sh must be either a DLL or
EXE path name. However, I got

 $2

and I have no idear what you want me to build. Please check
your arguments again and change appropriatly. Thank you.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
EOF
    exit 1
    ;;
esac
ARGV="$*"
## Command CHARPC is precomputed but user may override.
test -z "${CSHARPC}" && {
  CSHARPC="@CSHARPC@"
}

strongname="@STRONGNAME@"
keyfile="@KEYFILE@"
aptc="@APTC@"

## Compute the flags for well known compilers. Note that a user
## may override this settings by providing CSHARPCFLAGS - see be-
## low.
case ${csharpc} in
  *)
    case "${TARGET}" in
      *.exe|*.EXE)
        csharpcflags="-nologo -t:exe -out:${TARGET} -r:${antlr_net}"
        ;;
      *.dll|*.DLL)
        csharpcflags="-nologo -t:library -out:${TARGET} -r:System.Windows.Forms.dll -r:System.Drawing.dll -r:System.dll"
        # automatically add antlr_net if this assembly exists.
        test -f "${antlr_net}" && {
          csharpcflags="${csharpcflags} -r:${antlr_net}"
        }
        $strongname && {
          csharpcflags="${csharpcflags} -keyfile:${keyfile} -delaysign-"
        }
        $aptc && {
          csharpcflags="${csharpcflags} -d:APTC"
        }
        ;;
    esac
    ;;
esac


## If specific flags have been configured then they overrule
## our precomputed flags. Still a user can override by using
## environment variable $CSHARPCFLAGS - see below.
test -n "@CSHARPCFLAGS@" && {
  set x @CSHARPCFLAGS@  ; shift
  case $1 in
    +)
      shift
      CSHARPCFLAGS="${csharpcflags} $*"
      ;;
    -)
      shift
      csharpcflags="$* ${csharpcflags}"
      ;;
    =)
      shift
      csharpcflags="$*"
      ;;
    *)
      if test -z "$1" ; then
        csharpcflags="${csharpcflags}"
      else
        csharpcflags="$*"
      fi
      ;;
  esac
}

## Regardless what has been configured, a user should always
## be able to  override  without  the need to reconfigure or
## change this file. Therefore we check variable $CSHARPCFLAGS.
## In almost all cases the precomputed flags are just ok but
## some  additional  flags are needed. To support this in an
## easy way, we check for the very first value. If this val-
## ue is 
## '+'  -> append content of CSHARPCFLAGS to precomputed flags
## '-'  -> prepend content    -*-
## '='  -> do not use precomputed flags
## If none of these characters are given, the behaviour will
## be the same as if "=" would have been given.

set x ${CSHARPCFLAGS}  ; shift
case $1 in
  +)
    shift
    CSHARPCFLAGS="${csharpcflags} $*"
    ;;
  -)
    shift
    CSHARPCFLAGS="$* ${csharpcflags}"
    ;;
  =)
    shift
    CSHARPCFLAGS="$*"
    ;;
  *)
    if test -z "$1" ; then
      CSHARPCFLAGS="${csharpcflags}"
    else
      CSHARPCFLAGS="$*"
    fi
    ;;
esac

## Any special treatment goes here ..
case "${csharpc}" in
  csc)
    ;;
  *)
    ;;
esac

 ## go ahead ..
cmd="${CSHARPC} ${CSHARPCFLAGS}"
##xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx##
##        standard template to execute a command          ##
##xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx##
case "${verbose}" in
  0|no|nein|non)
    set x `echo $ARGV | wc`
    case $3 in
      1) files="file" ;; 
      *) files="files";;
    esac
    echo "*** compiling $3 C# ${files}"
    ;;
  *)
    echo $cmd
    ;;
esac

$cmd ${ARGV} || {
  rc=$?
  cat <<EOF

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                      >> E R R O R <<
============================================================

$cmd [$3 file(s) skipped]

============================================================
Got an error while trying to execute  command  above.  Error
messages (if any) must have shown before. The exit code was:
exit($rc)
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
EOF
  exit $rc
}
exit 0