11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
+
+
+
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.17 2000/12/27 16:46:13 peterg
## Stripped the mtt- from paths
##
## Revision 1.16 2000/12/27 15:16:44 peterg
## If then else format
##
## Revision 1.15 2000/12/27 14:57:43 peterg
## Now takes the base path as an argument
##
## Revision 1.14 2000/12/27 13:11:43 peterg
|
130
131
132
133
134
135
136
137
|
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
export LATEX2HTML="latex2html -contents_in_navigation -index_in_navigation -address http://mtt.sourceforge.net"
# Ascend stuff
export ASCENDLIBRARY=$MTTPATH/ascend/lib
# Oct file generation - use version with no optimisation.
export MKOCTFILE=$MTT_LIB/octave/mkoctfile
# ode2odes.exe stuff
# local system
PREFIX="/usr/local"
PLAT="i686-pc-linux-gnu"
GCCVERS="2.95.2"
SRCOCTAVE="/cvs/octave"
# 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"
LMTTCXX="-L. -lmttcxx"
# compiler options
export MTT_CXX="g++"
export MTT_CXXFLAGS="-g -O3"
export MTT_LD="ld"
export MTT_CXXLIBS="${LOCTAVE} ${LKPATHSEA} ${LREADLINE} ${LF2C} ${LSYSTEM} ${LMTTCXX}"
export MTT_CXXINCS="-I. ${IOCTAVE}"
fi
|