Overview
Comment: | Sorted out for general use |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
15488375bdb8222438e03d28f4292309 |
User & Date: | gawthrop@users.sourceforge.net on 2000-11-30 18:42:16 |
Other Links: | branch diff | manifest | tags |
Context
2000-12-01
| ||
14:15:16 | Removed hyperref stuff to mtt_pdf.sty check-in: 0656a1f6cb user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-11-30
| ||
18:42:16 | Sorted out for general use check-in: 15488375bd user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
15:23:16 |
Taken out all subsystem stuff - now done in mtt using mtt_make_subsystems check-in: 1a1c6c4f0d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_make_subsystems from [f08a2c8c26] to [b6acb92e03].
1 2 3 4 5 | #!/bin/sh # Makes subsystems for partitioning # Copyright (C) 2000 by Peter J. Gawthrop | > | > > > | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #!/bin/sh # Makes subsystems for partitioning # Copyright (C) 2000 by Peter J. Gawthrop options=$1 sys=$2 rep=$3 lang=$4 echo Creating subsystem representations for ${sys}_${rep}.${lang} # Get subsystems subsystems=`mtt_get_subsystems -strip ${sys}`; for subsystem in $subsystems; do echo mtt $options -u -q -sub $subsystem ${sys} ${rep} ${lang} ## Repeating systems need sorting out !!!! #cp $1_$subsystem"_"$2.$3 $1_$subsystem"_1_"$2.$3 done |