11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.31 2002/05/02 20:12:45 geraint
## Added -Wl,--rpath to MTT_CXXLIBS. Sets the runtime linker path so that the
## sys-admin does not have to ldconfig the octave directory for -cc to work.
##
## Revision 1.30 2002/05/02 11:10:11 geraint
## s/loctave/loctinterp/
##
|
>
>
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.32 2002/05/07 23:50:34 geraint
## Preliminary support for Matlab dynamically linked shared objects:
## invoke with: mtt -cc sys rep mexglx
## ode2odes support is not yet included.
##
## Revision 1.31 2002/05/02 20:12:45 geraint
## Added -Wl,--rpath to MTT_CXXLIBS. Sets the runtime linker path so that the
## sys-admin does not have to ldconfig the octave directory for -cc to work.
##
## Revision 1.30 2002/05/02 11:10:11 geraint
## s/loctave/loctinterp/
##
|
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
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
export MATRIX_PATH=$MTTPATH/trans/m//
export MATRIX_PATH=$MATRIX_PATH\:$MTT_LIB/comp/simple//
export MATRIX_PATH=$MATRIX_PATH\:$MTT_LIB/control//
export MATRIX_PATH=$MATRIX_PATH\:$MTT_LIB/octave//\:\:
|
|
|
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
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\:$MTT_REP
#Setup octave
export MATRIX_PATH=$MTTPATH/trans/m//
export MATRIX_PATH=$MATRIX_PATH\:$MTT_LIB/comp/simple//
export MATRIX_PATH=$MATRIX_PATH\:$MTT_LIB/control//
export MATRIX_PATH=$MATRIX_PATH\:$MTT_LIB/octave//\:\:
|