13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright (C) 2001 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.400 2004/08/31 01:29:48 geraint
## CRs are applied to sorted equation files during production.
##
## Revision 1.399 2004/08/29 16:09:49 geraint
## Added option -no-reduce
##
## Code sorting can now be used with Reduce (via sese.r) so that existing CRs
|
>
>
>
>
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright (C) 2001 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.401 2004/09/02 22:04:06 geraint
## Passes ${use_reduce} to mtt_make_sympar so that it can decide
## if to issue warnings about Reduce reserved words
##
## Revision 1.400 2004/08/31 01:29:48 geraint
## CRs are applied to sorted equation files during production.
##
## Revision 1.399 2004/08/29 16:09:49 geraint
## Added option -no-reduce
##
## Code sorting can now be used with Reduce (via sese.r) so that existing CRs
|
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
|
${sys}_sese.make: ${sys}_ese.r
echo Creating \$@
ese_r2make.pl --sys=${sys} --outfile=\$@ --$debug
perl_crs.stamp:
echo Copying CRs from ${MTT_LIB}/cr/perl
cp ${MTT_LIB}/cr/perl/*.pm .
touch \$@
endif
$1_def.r: $1_ese.r
touch $1_def.r
$1_struc.txt: $1_ese.r
touch $1_struc.txt
|
>
|
|
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
|
${sys}_sese.make: ${sys}_ese.r
echo Creating \$@
ese_r2make.pl --sys=${sys} --outfile=\$@ --$debug
perl_crs.stamp:
echo Copying CRs from ${MTT_LIB}/cr/perl
mkdir -p mtt
cp ${MTT_LIB}/cr/perl/*.pm mtt/
touch \$@
endif
$1_def.r: $1_ese.r
touch $1_def.r
$1_struc.txt: $1_ese.r
touch $1_struc.txt
|