10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
+
+
+
|
# Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996.
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.97 1997/12/04 10:44:33 peterg
## Changed $cc to $CC
##
## Revision 1.96 1997/12/04 10:40:26 peterg
## Added -p switch - print enviromment variables
##
## Revision 1.95 1997/12/04 10:05:02 peterg
## Compiler now symbolocic $cc
##
# Revision 1.94 1997/11/20 11:23:16 peterg
|
348
349
350
351
352
353
354
355
356
357
358
359
360
361
|
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
|
+
+
+
+
|
#By default, the dae and ode representations are different
dae_is_ode=0
# By default, don't look for BG switches
switches=0
#By default, don't print the environment variables
print='';
#Initialise list
mtt_switches='';
#Look for a command line argument
while [ -n "`echo $1 | grep '-'`" ]; do
mtt_switches="$mtt_switches $1"
case $1 in
-q )
|