1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
# Bourne shell script: mttrc - sets up paths etc for mtt
# Usage: mttrc
# This version sets up octave as the matrix engine except for the three
# recursive transformations (abg2cbg, cbg2ese,cbg2fig) which use matlab
# Hopfully, a new release of Octave will fix this.
# Copyright (c) P.J.Gawthrop 1996.
#Edit the following line to show the location of mtt
MTTPATH=~/mtt_new/mtt
# The following line sets up the make to use -- gmake is the standard
# but you may wish to use lsmake for parallelism
MAKE='gmake'
|
|
|
|
>
>
>
>
>
>
|
|
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/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$
###############################################################
#Edit the following line to show the location of mtt
MTTPATH=~/mtt_new/mtt
# The following line sets up the make to use -- gmake is the standard
# but you may wish to use lsmake for parallelism
MAKE='gmake'
|