11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.22 2001/04/12 03:08:00 geraint
## Improved sh->csh conversion, reduces environment namespace pollution.
## Still need to do proper if [ -z $MTT_BASE ] ... else ... fi conversion.
##
## Revision 1.21 2001/04/10 13:56:13 gawthrop
## Uses standard mkoctfile
##
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.23 2001/07/24 22:32:49 gawthrop
## Use gv, not ghostview
##
## Revision 1.22 2001/04/12 03:08:00 geraint
## Improved sh->csh conversion, reduces environment namespace pollution.
## Still need to do proper if [ -z $MTT_BASE ] ... else ... fi conversion.
##
## Revision 1.21 2001/04/10 13:56:13 gawthrop
## Uses standard mkoctfile
##
|
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
# Setup the paths
export MTTPATH=$MTT_BASE/bin
export MTT_LIB=$MTT_BASE/lib
export MTT_DOC=$MTT_BASE/doc
export MTT_CC=$MTT_BASE/cc
export MTT_COMPONENTS=$MTT_LIB/comp
export MTT_CRS=$MTT_LIB/cr
export MTT_EXAMPLES=$MTT_LIB/examples
export MTT_REP=$MTT_LIB/rep
export PATH=$PATH\:$MTTPATH\:$MTTPATH/trans\:$MTT_CC
#Setup octave
|
|
|
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
# Setup the paths
export MTTPATH=$MTT_BASE/bin
export MTT_LIB=$MTT_BASE/lib
export MTT_DOC=$MTT_BASE/doc
export MTT_CC=$MTT_BASE/cc
export MTT_COMPONENTS=.:$MTT_LIB/comp
export MTT_CRS=$MTT_LIB/cr
export MTT_EXAMPLES=$MTT_LIB/examples
export MTT_REP=$MTT_LIB/rep
export PATH=$PATH\:$MTTPATH\:$MTTPATH/trans\:$MTT_CC
#Setup octave
|