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
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# Revision 1.3 1998/01/06 09:11:26 peterg
# Removed matlab from the setup
#
# Revision 1.2 1997/12/04 10:49:16 peterg
# Put under RCS at last
# Added CC variable
#
###############################################################
#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
|
>
>
>
|
|
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
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.4 1998/01/06 09:14:51 peterg
## Added latex2html to setup
##
# Revision 1.3 1998/01/06 09:11:26 peterg
# Removed matlab from the setup
#
# Revision 1.2 1997/12/04 10:49:16 peterg
# Put under RCS at last
# Added CC variable
#
###############################################################
#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='make'
export MAKE
# The following sets up the c compiler
CC='gcc'
export CC
# Setup the paths
|