Overview
Comment: | Added various document viewers. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a6228d31402f6c9703da97d9b8490c88 |
User & Date: | gawthrop@users.sourceforge.net on 1996-08-22 12:19:51 |
Other Links: | branch diff | manifest | tags |
Context
1996-08-22
| ||
13:14:39 | Initial revision check-in: 82ce58c981 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:19:51 | Added various document viewers. check-in: a6228d3140 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1996-08-20
| ||
08:26:06 | Version control header added. check-in: 8cc4cb7bcf user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [5a106f2435] to [1a546ddfb8].
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | - - - - - + + + | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: mtt |
︙ | |||
83 84 85 86 87 88 89 | 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | - + + + + + + - - + + + + + + + + + + + + + + + | echo echo 'MTT (Model Transformation Tools) version 2.0' echo 'This is free software with ABSOLUTELY NO WARRANTY.' echo 'Type `mtt warranty'\' 'for details.' echo if [ "$1" = "" ]; then |
︙ | |||
120 121 122 123 124 125 126 | 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | + + + + + + + + + + + + + - + | along with this program. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. EOF exit fi # Clean up if [ "$1" = "clean" ] && [ "$2" = "" ]; then echo 'Removing all generated files for all systems' rm -f *.log mtt_info.txt warning.txt rm -f *_abg.m *_args.* rm -f *_rbg.* *_cmp.* *_fig.fig *_*cbg.* *_ese.* *_def.* rm -f *_dae*.* *_cse.* *_ode*.* *_obs.* *_rfe.* *_ss.* rm -f *_dm.* *_csm.* *_sm.* *_tf.* *_sr*.* *_*fr.* rm -f *_rep.* exit fi # Clean up named system |
︙ | |||
145 146 147 148 149 150 151 | 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | - + | # Save up the argument list in a file; but only if argument has changed ARGS=$4; cat > $1_args.new <<EOF $ARGS EOF |
︙ | |||
187 188 189 190 191 192 193 194 195 196 197 198 199 200 | 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 | + + | REPTYPE='data' ;; *) REPTYPE='tex' ;; esac # Version control VC='' if [ "$3" = "vc" ]; then case $2 in abg ) VC='ok' VCext='fig' ;; lbl ) VC='ok' |
︙ | |||
510 511 512 513 514 515 516 | 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 | - + - + - + | ifeq ($REPTYPE,tex) $1_$2.view : $1_$2.tview endif #View a ps file $1_$2.pview: $1_$2.ps echo Creating view of $1_$2 |
︙ |