11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.25 2002/04/02 09:16:39 geraint
## Tidied up library search paths, now assumes that system libraries are set up correctly.
## For Debian, this means installing the following: blas-dev, fftw-dev, lapack-dev, libncurses5-dev, libkpathsea-dev, libreadline-dev
## It may also be necessary to run /sbin/ldconfig on the relevant directories (especially Octave's).
##
## Revision 1.24 2001/10/15 14:28:35 gawthrop
## Now has . at start of components library path $MTT_COMPONENTS
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.26 2002/04/26 16:16:33 geraint
## Removed unnecessary variables PLAT and GCCVERS.
##
## Revision 1.25 2002/04/02 09:16:39 geraint
## Tidied up library search paths, now assumes that system libraries are set up correctly.
## For Debian, this means installing the following: blas-dev, fftw-dev, lapack-dev, libncurses5-dev, libkpathsea-dev, libreadline-dev
## It may also be necessary to run /sbin/ldconfig on the relevant directories (especially Octave's).
##
## Revision 1.24 2001/10/15 14:28:35 gawthrop
## Now has . at start of components library path $MTT_COMPONENTS
|
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
|
# include paths
IOCTAVE="-I${PREFIX}/include/octave/ -I${PREFIX}/include/octave/octave"
# library paths
OCTAVEVERS=`octave --version | awk '{ print $4 }'`
LOCTAVE="-L${PREFIX}/lib/octave-${OCTAVEVERS} -loctave -lcruft -loctinterp"
LSYSTEM="-ldl -lm -lncurses -lkpathsea -lreadline -lblas -llapack -lfftw -lg2c"
# compiler options
DEBUG="-g"
OPTIM="-O3"
|
|
|
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
|
# include paths
IOCTAVE="-I${PREFIX}/include/octave/ -I${PREFIX}/include/octave/octave"
# library paths
OCTAVEVERS=`octave --version | gawk '{ print $4 }'`
LOCTAVE="-L${PREFIX}/lib/octave-${OCTAVEVERS} -loctave -lcruft -loctinterp"
LSYSTEM="-ldl -lm -lncurses -lkpathsea -lreadline -lblas -llapack -lfftw -lg2c"
# compiler options
DEBUG="-g"
OPTIM="-O3"
|