13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright (C) 2001 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.330 2002/04/17 10:03:12 geraint
## Marked .sg as a major representation.
##
## Revision 1.329 2002/04/16 14:58:00 gawthrop
## mtt copy does NOT now copy the CVS directory
## $directory --> ${directory} (just to be tidy)
##
|
>
>
>
>
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright (C) 2001 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.331 2002/04/19 09:24:29 gawthrop
## 2 changes to ode2odes_out generation: only compiles the specified c
## file; outside the computation=c clause
##
## Revision 1.330 2002/04/17 10:03:12 geraint
## Marked .sg as a major representation.
##
## Revision 1.329 2002/04/16 14:58:00 gawthrop
## mtt copy does NOT now copy the CVS directory
## $directory --> ${directory} (just to be tidy)
##
|
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
|
echo ' --versions print version of mtt and components and exit'
exit
fi
fi
if [ "$1" = "info" ] && [ "$3" = "" ]; then
(cd $MTTPATH/doc/; make --silent mtt.info)
echo "Invoking info in xterm"
xterm -e info -f $MTTPATH/doc/mtt.info $2
exit
fi
if [ "$1" = "help" ]; then
mtt_help $2 $3
exit
fi
|
|
|
|
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
|
echo ' --versions print version of mtt and components and exit'
exit
fi
fi
if [ "$1" = "info" ] && [ "$3" = "" ]; then
(cd $MTT_DOC ; make --silent mtt.info)
echo "Invoking info in xterm"
xterm -e info -f $MTT_DOC/mtt.info $2
exit
fi
if [ "$1" = "help" ]; then
mtt_help $2 $3
exit
fi
|