Overview
Comment: | Report generation included. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
bf82466e1418a76473dfd5f5715f78cd |
User & Date: | gawthrop@users.sourceforge.net on 1996-08-18 19:58:36 |
Other Links: | branch diff | manifest | tags |
Context
1996-08-18
| ||
20:02:21 | Include zero outputs. check-in: 0b255bec4b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
19:58:36 | Report generation included. check-in: bf82466e14 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:03:49 | Initial revision check-in: 83fd3b2cd7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [85a6ac0bcf] to [2da17d5fd3].
︙ | |||
15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | + + + | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.15 1996/08/18 12:01:01 peter ## Unified format of time responses. ## ## Revision 1.14 1996/08/16 14:52:24 peter ## Added two alternative view options - dview and pview. ## ## Revision 1.13 1996/08/16 08:24:31 peter ## Correctly chooses how to make a ps file using $REPTYPE. ## ## Revision 1.12 1996/08/15 16:47:47 peter |
︙ | |||
165 166 167 168 169 170 171 | 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | - + + | # Cancel implicit rules I don't want %.dvi: %.tex # Create an arg file if it doesn't exist $1_args.m: touch $1_args.m |
︙ | |||
219 220 221 222 223 224 225 226 227 228 229 230 231 232 | 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 | + + + + + + + + + + | )> $1_input.m $1_sspar.r: echo Creating $1_sspar.r echo "%% Reduce steady-state parameter file for $1 ($1_sspar.r)" \ > $1_sspar.r $1_rep.txt: echo Creating $1_rep.txt ( \ echo "%% Outline report file for system $1 ($1_rep.txt)"; \ echo "abg ps"; \ echo "lbl txt"; \ echo "cbg ps"; \ echo "dae tex"; \ )> $1_rep.txt #Raw bond graph: fig file to mfile $1_rbg.m: $1_abg.fig $1_lbl.txt rbg_fig2m $1 $1_cmp.m: $1_rbg.m $1_fig.fig: $1_rbg.m |
︙ | |||
384 385 386 387 388 389 390 | 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 | - + | #Generic conversion of data files from dat to (gplot) gdat format $1_$2.gdat: $1_$2.dat dat2gdat $1_$2 #Generic conversion of Latex to latex document $1_$2.doc: $1_$2.tex |
︙ | |||
441 442 443 444 445 446 447 | 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 | - - - - - - - - + + + + + + - - - + - - + | #View a tex file $1_$2.tview: $1_$2.dvi echo Creating view of $1_$2 xdvi $1_$2.dvi& #Report generation |