Overview
| Comment: | Copies Perl CRs to an mtt subdirectory (=> mtt:: workspace). |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
9d047c0906ec5b2fe6da06fe854c3e67 |
| User & Date: | geraint@users.sourceforge.net on 2004-09-03 08:35:27.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2004-09-03
| ||
| 08:36:57 |
Checks for the existence of .pm files in either the working directory or the mtt subdirectory (copied from cr/perl/). check-in: 05c5e3fed7 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 08:35:27 | Copies Perl CRs to an mtt subdirectory (=> mtt:: workspace). check-in: 9d047c0906 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 08:34:26 | Moved standard CR packages into the mtt:: workspace. check-in: 77f05bcb5d user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt
from [49a5fba3aa]
to [1decc6d85a].
| ︙ | ︙ | |||
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 |
${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
| > | | 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
|
| ︙ | ︙ |