11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.17.2.4 2001/03/06 03:48:43 geraint
## Print additional environment variable for "mtt -p".
## MTT_LDFLAGS defaults to " " to avoid installation warning.
##
## Revision 1.17.2.3 2001/03/01 05:05:53 geraint
## Minor revisions.
##
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.18 2001/03/19 02:28:52 geraint
## Branch merge: merging-ode2odes-exe back to MAIN.
##
## Revision 1.17.2.4 2001/03/06 03:48:43 geraint
## Print additional environment variable for "mtt -p".
## MTT_LDFLAGS defaults to " " to avoid installation warning.
##
## Revision 1.17.2.3 2001/03/01 05:05:53 geraint
## Minor revisions.
##
|
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
|
export MKOCTFILE=$MTT_LIB/octave/mkoctfile
# ode2odes.exe stuff
# local system
PLAT="i686-pc-linux-gnu"
PREFIX="/usr/local"
GCCVERS="2.95.2"
SRCOCTAVE="/cvs/octave"
# PLAT="mips-sgi-irix6.5"
# PREFIX="/usr/people/bevangp/GNU"
# GCCVERS="2.95.2"
# SRCOCTAVE="${PREFIX}/../build/octave-2.1.33"
# include paths
IOCTAVE="-I${PREFIX}/include/octave"
# library paths
LOCTAVE="-L${PREFIX}/lib/octave -loctave -lcruft -loctinterp"
LKPATHSEA="-L${SRCOCTAVE}/kpathsea -lkpathsea"
LREADLINE=" -L${SRCOCTAVE}/readline -lreadline"
LSYSTEM="-ldl -lm -lncurses"
LF2C="-L${PREFIX}/lib/gcc-lib/${PLAT}/${GCCVERS} -lg2c"
# compiler options
|
|
>
>
|
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
|
export MKOCTFILE=$MTT_LIB/octave/mkoctfile
# ode2odes.exe stuff
# local system
PLAT="i686-pc-linux-gnu"
# PREFIX="/usr/local"
PREFIX="/usr"
GCCVERS="2.95.2"
SRCOCTAVE="/cvs/octave"
# PLAT="mips-sgi-irix6.5"
# PREFIX="/usr/people/bevangp/GNU"
# GCCVERS="2.95.2"
# SRCOCTAVE="${PREFIX}/../build/octave-2.1.33"
# include paths
IOCTAVE="-I${PREFIX}/include/octave"
# library paths
# LOCTAVE="-L${PREFIX}/lib/octave -loctave -lcruft -loctinterp"
LOCTAVE="-L${PREFIX}/lib/octave -loctave -lcruft -loctinterp"
LKPATHSEA="-L${SRCOCTAVE}/kpathsea -lkpathsea"
LREADLINE=" -L${SRCOCTAVE}/readline -lreadline"
LSYSTEM="-ldl -lm -lncurses"
LF2C="-L${PREFIX}/lib/gcc-lib/${PLAT}/${GCCVERS} -lg2c"
# compiler options
|