1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/csh
## Automatically generated from bashrc on Wed May 9 09:02:08 BST 2001 - DO NOT EDIT
#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
# Bourne shell script: mttrc - sets up paths etc for mtt
# Usage: mttrc
# Copyright (c) P.J.Gawthrop 1996,1977.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.22 2001/04/12 03:08:00 geraint
## Improved sh->csh conversion, reduces environment namespace pollution.
##
## Revision 1.21 2001/04/10 13:56:13 gawthrop
## Uses standard mkoctfile
##
## Revision 1.20 2001/04/10 13:08:19 gawthrop
|
|
>
>
>
>
>
>
>
>
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#!/bin/csh
## Automatically generated from bashrc on Wed Apr 24 10:24:58 BST 2002 - DO NOT EDIT
#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
# Bourne shell script: mttrc - sets up paths etc for mtt
# Usage: mttrc
# Copyright (c) P.J.Gawthrop 1996,1977.
###############################################################
## 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
##
## Revision 1.23 2001/07/24 22:32:49 gawthrop
## Use gv, not ghostview
##
## Revision 1.22 2001/04/12 03:08:00 geraint
## Improved sh->csh conversion, reduces environment namespace pollution.
##
## Revision 1.21 2001/04/10 13:56:13 gawthrop
## Uses standard mkoctfile
##
## Revision 1.20 2001/04/10 13:08:19 gawthrop
|
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
# Setup the paths
setenv MTTPATH $MTT_BASE/bin
setenv MTT_LIB $MTT_BASE/lib
setenv MTT_DOC $MTT_BASE/doc
setenv MTT_CC $MTT_BASE/cc
setenv MTT_COMPONENTS $MTT_LIB/comp
setenv MTT_CRS $MTT_LIB/cr
setenv MTT_EXAMPLES $MTT_LIB/examples
setenv MTT_REP $MTT_LIB/rep
setenv PATH $PATH\:$MTTPATH\:$MTTPATH/trans\:$MTT_CC
#Setup octave
|
|
|
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
# Setup the paths
setenv MTTPATH $MTT_BASE/bin
setenv MTT_LIB $MTT_BASE/lib
setenv MTT_DOC $MTT_BASE/doc
setenv MTT_CC $MTT_BASE/cc
setenv MTT_COMPONENTS .:$MTT_LIB/comp
setenv MTT_CRS $MTT_LIB/cr
setenv MTT_EXAMPLES $MTT_LIB/examples
setenv MTT_REP $MTT_LIB/rep
setenv PATH $PATH\:$MTTPATH\:$MTTPATH/trans\:$MTT_CC
#Setup octave
|
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
-startgridmode 2 \
-pheight 21 \
-pwidth 30 \
-library_dir $MTT_LIB/xfig/\
"
# Setup ps viewer
setenv PSVIEW 'ghostview'
# Setup pdf viewer
setenv PDFVIEW 'acroread'
# Setup html viewer
setenv HTMLVIEW 'netscape'
|
|
|
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
-startgridmode 2 \
-pheight 21 \
-pwidth 30 \
-library_dir $MTT_LIB/xfig/\
"
# Setup ps viewer
setenv PSVIEW 'gv'
# Setup pdf viewer
setenv PDFVIEW 'acroread'
# Setup html viewer
setenv HTMLVIEW 'netscape'
|
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
|
setenv MKOCTFILE mkoctfile
# ode2odes.exe stuff
# local system
set PLAT="i686-pc-linux-gnu"
# PREFIX="/usr/local"
set PREFIX="/usr"
set GCCVERS="2.95.2"
set 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
set IOCTAVE="-I${PREFIX}/include/octave"
# library paths
# LOCTAVE="-L${PREFIX}/lib/octave -loctave -lcruft -loctinterp"
set LOCTAVE="-L${PREFIX}/lib/octave -loctave -lcruft -loctinterp"
set LKPATHSEA="-L${SRCOCTAVE}/kpathsea -lkpathsea"
set LREADLINE=" -L${SRCOCTAVE}/readline -lreadline"
set LSYSTEM="-ldl -lm -lncurses"
set LF2C="-L${PREFIX}/lib/gcc-lib/${PLAT}/${GCCVERS} -lg2c"
# compiler options
set DEBUG="-g"
set OPTIM="-O3"
set FLAGS="-fno-rtti -fno-exceptions -fno-implicit-templates"
# exported variables
setenv MTT_CXX "g++"
setenv MTT_CXXFLAGS "${DEBUG} ${OPTIM} ${FLAGS}"
setenv MTT_CXXLIBS "${LOCTAVE} ${LKPATHSEA} ${LREADLINE} ${LF2C} ${LSYSTEM}"
setenv MTT_CXXINCS "-I. ${IOCTAVE}"
setenv MTT_LDFLAGS " "
|
<
<
<
<
<
<
<
|
|
|
<
<
|
<
|
|
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
211
|
setenv MKOCTFILE mkoctfile
# ode2odes.exe stuff
# local system
set PLAT="i686-pc-linux-gnu"
set PREFIX="/usr"
set GCCVERS="2.95.2"
# include paths
set IOCTAVE="-I${PREFIX}/include/octave/ -I${PREFIX}/include/octave/octave"
# library paths
set OCTAVEVERS=`octave --version | awk '{ print $4 }'`
set LOCTAVE="-L${PREFIX}/lib/octave-${OCTAVEVERS} -loctave -lcruft -loctinterp"
set LSYSTEM="-ldl -lm -lncurses -lkpathsea -lreadline -lblas -llapack -lfftw -lg2c"
# compiler options
set DEBUG="-g"
set OPTIM="-O3"
set FLAGS="-fno-rtti -fno-exceptions -fno-implicit-templates"
# exported variables
setenv MTT_CXX "g++"
setenv MTT_CXXFLAGS "${DEBUG} ${OPTIM} ${FLAGS}"
setenv MTT_CXXLIBS "${LOCTAVE} ${LSYSTEM}"
setenv MTT_CXXINCS "-I. ${IOCTAVE}"
setenv MTT_LDFLAGS " "
|