Overview
Comment: | Set to version 2.4 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e5855c0a0551e9c26ec8480e15957f77 |
User & Date: | gawthrop@users.sourceforge.net on 1997-06-13 08:59:03 |
Other Links: | branch diff | manifest | tags |
Context
1997-06-13
| ||
09:18:28 | Removed all params.m check-in: 13cbf4c7ea user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:59:03 | Set to version 2.4 check-in: e5855c0a05 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1997-06-03
| ||
15:17:09 | Changed label to MTT_SWITCH check-in: 4f3deeee40 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [b4186c8cc3] to [2a879dada2].
︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.80 1997/05/22 07:38:27 peterg ## Added command line info to .doc files (makedoc) ## ## Revision 1.79 1997/05/19 16:44:12 peterg ## Many changes to get rep.html mode working properly. ## # Revision 1.78 1997/05/19 13:17:50 peterg | > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.81 1997/05/22 10:11:04 peterg ## Fixed dat2gdat bug (with parameters) ## ## Revision 1.80 1997/05/22 07:38:27 peterg ## Added command line info to .doc files (makedoc) ## ## Revision 1.79 1997/05/19 16:44:12 peterg ## Many changes to get rep.html mode working properly. ## # Revision 1.78 1997/05/19 13:17:50 peterg |
︙ | ︙ | |||
318 319 320 321 322 323 324 | shift done #Print header if not in quiet (-q) mode. if [ "$quiet" != "quiet" ]; then echo | | | 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | shift done #Print header if not in quiet (-q) mode. if [ "$quiet" != "quiet" ]; then echo echo 'MTT (Model Transformation Tools) version 2.4' echo 'This is free software with ABSOLUTELY NO WARRANTY.' echo 'Type `mtt warranty'\' 'for details.' echo fi if [ -z "$1" ]; then echo 'Usage: mtt help' |
︙ | ︙ | |||
1153 1154 1155 1156 1157 1158 1159 | $1_pkim.tex: $1_def.r $1_pkim.r $1_sympar.r pkim_r2tex $1; latex_tidy $1_pkim.tex #Generic conversion of data files from m to dat format $1_$2.dat: $1_$2.m m2dat $1_$2 | | | | 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 | $1_pkim.tex: $1_def.r $1_pkim.r $1_sympar.r pkim_r2tex $1; latex_tidy $1_pkim.tex #Generic conversion of data files from m to dat format $1_$2.dat: $1_$2.m m2dat $1_$2 #Generic conversion of data files from dat to (gplot) gdat format $1_$2.gdat: $1_$2.dat $1_args.m $1_struc.txt dat2gdat $1 $2 $4 #Generic conversion of Latex to latex document mtt.sty: echo Copying mtt.sty to here cp $MTTPATH/trans/mtt.sty . $1_$2.doc: $1_$2.tex makedoc "$mtt_switches" "$1" "$2" "$3" "$4" |
︙ | ︙ | |||
1220 1221 1222 1223 1224 1225 1226 | ghostview $1_$2.ps& endif ifeq ($REPTYPE,tex) $1_$2.view : $1_$2.tview endif | | > > | 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 | ghostview $1_$2.ps& endif ifeq ($REPTYPE,tex) $1_$2.view : $1_$2.tview endif # Hypertext view $1_$2.hview: $1_$2.html $HTMLVIEW $1_$2/$1_$2.html& #View a ps file $1_$2.pview: $1_$2.ps echo Creating view of $1_$2 multi_command $PSVIEW $1 $2.ps | sh #View a gdat file |
︙ | ︙ |