11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.20 2001/04/10 13:08:19 gawthrop
## Smoother translation to .cs using sh2csh
##
## Revision 1.19 2001/03/30 15:13:49 gawthrop
## Rationalised simulation modes to each return mtt_data
##
## Revision 1.18 2001/03/19 02:28:52 geraint
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.21 2001/04/10 13:56:13 gawthrop
## Uses standard mkoctfile
##
## Revision 1.20 2001/04/10 13:08:19 gawthrop
## Smoother translation to .cs using sh2csh
##
## Revision 1.19 2001/03/30 15:13:49 gawthrop
## Rationalised simulation modes to each return mtt_data
##
## Revision 1.18 2001/03/19 02:28:52 geraint
|
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
#export MKOCTFILE=$MTT_LIB/octave/mkoctfile # This for no optimisation
export MKOCTFILE=mkoctfile
# ode2odes.exe stuff
# local system
export PLAT="i686-pc-linux-gnu"
# PREFIX="/usr/local"
export PREFIX="/usr"
export GCCVERS="2.95.2"
export 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
export IOCTAVE="-I${PREFIX}/include/octave"
# library paths
# LOCTAVE="-L${PREFIX}/lib/octave -loctave -lcruft -loctinterp"
export LOCTAVE="-L${PREFIX}/lib/octave -loctave -lcruft -loctinterp"
export LKPATHSEA="-L${SRCOCTAVE}/kpathsea -lkpathsea"
export LREADLINE=" -L${SRCOCTAVE}/readline -lreadline"
export LSYSTEM="-ldl -lm -lncurses"
export LF2C="-L${PREFIX}/lib/gcc-lib/${PLAT}/${GCCVERS} -lg2c"
# compiler options
export DEBUG="-g"
export OPTIM="-O3"
export FLAGS="-fno-rtti -fno-exceptions -fno-implicit-templates"
# exported variables
export MTT_CXX="g++"
export MTT_CXXFLAGS="${DEBUG} ${OPTIM} ${FLAGS}"
export MTT_CXXLIBS="${LOCTAVE} ${LKPATHSEA} ${LREADLINE} ${LF2C} ${LSYSTEM}"
export MTT_CXXINCS="-I. ${IOCTAVE}"
export MTT_LDFLAGS=" "
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
|
#export MKOCTFILE=$MTT_LIB/octave/mkoctfile # This for no optimisation
export MKOCTFILE=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
DEBUG="-g"
OPTIM="-O3"
FLAGS="-fno-rtti -fno-exceptions -fno-implicit-templates"
# exported variables
export MTT_CXX="g++"
export MTT_CXXFLAGS="${DEBUG} ${OPTIM} ${FLAGS}"
export MTT_CXXLIBS="${LOCTAVE} ${LKPATHSEA} ${LREADLINE} ${LF2C} ${LSYSTEM}"
export MTT_CXXINCS="-I. ${IOCTAVE}"
export MTT_LDFLAGS=" "
fi
|