Artifact b6acb92e038a1ccc3b0fa4d6a95723ae0fec5b064d6f84c3e256fa77a43c1cf6:
- Executable file mttroot/mtt/bin/trans/mtt_make_subsystems — part of check-in [62fb44de29] at 2000-11-30 18:42:16 on branch origin/master — Sorted out for general use (user: gawthrop@users.sourceforge.net, size: 462) [annotate] [blame] [check-ins using] [more...]
#!/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