11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## 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
## *** empty log message ***
##
## Revision 1.13 2000/10/03 12:12:14 peterg
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## 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
## *** empty log message ***
##
## Revision 1.13 2000/10/03 12:12:14 peterg
|
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
export MAKE='make'
# The following sets up the c compiler
export CC='gcc'
# Setup the paths
export MTTPATH=$MTT_BASE/bin
export MTT_LIB=$MTT_BASE/mtt-lib
export MTT_DOC=$MTT_BASE/mtt-doc
export MTT_CC=$MTT_BASE/mtt-cc
export MTT_COMPONENTS=$MTT_LIB/comp
export MTT_CRS=$MTT_LIB/cr
export MTT_EXAMPLES=$MTT_LIB/examples
export MTT_REP=$MTT_LIB/rep
export PATH=$PATH\:$MTTPATH\:$MTTPATH/trans\:$MTT_CC
|
|
|
|
|
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
export MAKE='make'
# The following sets up the c compiler
export CC='gcc'
# Setup the paths
export MTTPATH=$MTT_BASE/bin
export MTT_LIB=$MTT_BASE/lib
export MTT_DOC=$MTT_BASE/doc
export MTT_CC=$MTT_BASE/cc
export MTT_COMPONENTS=$MTT_LIB/comp
export MTT_CRS=$MTT_LIB/cr
export MTT_EXAMPLES=$MTT_LIB/examples
export MTT_REP=$MTT_LIB/rep
export PATH=$PATH\:$MTTPATH\:$MTTPATH/trans\:$MTT_CC
|