Overview
Comment:Initial revision
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: 4eaff637f94efd265a0630188cdb444ab19dd0bfbf97363d8a3f8b58ed3eeba5
User & Date: gawthrop@users.sourceforge.net on 1997-12-04 10:47:39
Other Links: branch diff | manifest | tags
Context
1997-12-04
10:49:16
Put under RCS at last
Added CC variable
check-in: b942b3cbd2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
10:47:39
Initial revision check-in: 4eaff637f9 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
10:44:33
Changed $cc to $CC check-in: 83cdcba165 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
Changes

Added mttroot/mtt/bin/mttrc version [fc4a582224].































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#! /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'
export MAKE

# The following sets up the c compiler
CC='gcc'
export CC

# Setup the paths
export MTTPATH
PATH=$PATH:$MTTPATH:$MTTPATH/trans
export PATH
MATRIX_PATH=$MTTPATH/trans/m:$MTTPATH/lib/comp/simple

MTT_COMPONENTS=$MTTPATH/lib/comp
export MTT_COMPONENTS

MTT_CRS=$MTTPATH/lib/cr
export MTT_CRS

MTT_EXAMPLES=$MTTPATH/lib/examples
export MTT_EXAMPLES

MTT_LIB=$MTTPATH/lib
export MTT_LIB


#Setup octave
MATRIX=octave
export MATRIX
OCTAVE_PATH=$OCTAVE_PATH:$MATRIX_PATH
export OCTAVE_PATH 

RMATRIX=octave
export RMATRIX

#Setup matlab
MATLABPATH=$MATLABPATH:$MATRIX_PATH
export MATLABPATH


# Setup the symbolic stuff
SYMBOLIC='reduce'
export SYMBOLIC

# Setup xfig
FIG='xfig  -startfontsize 20 -metric -startgridmode 1'
export FIG

# Setup ps viewer
PSVIEW='ghostview'
export PSVIEW

# Setup html viewer
HTMLVIEW='netscape'
export HTMLVIEW

# Setup dvi viewer
DVIVIEW='xdvi'
export DVIVIEW


MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]