Overview
Comment: | Added path checking code -- mtt_check_vars |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
fb8c567bf533924e2d0d204d92329271 |
User & Date: | gawthrop@users.sourceforge.net on 1997-07-27 13:11:11 |
Other Links: | branch diff | manifest | tags |
Context
1997-07-27
| ||
13:12:03 | Initial revision check-in: 54a96339ac user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
13:11:11 | Added path checking code -- mtt_check_vars check-in: fb8c567bf5 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1997-07-06
| ||
16:35:20 | Initial revision check-in: 5bb47c8759 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [31b59df962] to [fe4073fa0a].
︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 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.86 1997/06/29 19:05:51 peterg # Seascale changes -- mainly to new rep format. # ## Revision 1.85 1997/06/27 12:14:49 peterg ## Upped version to 2.4++ ## # Revision 1.84 1997/06/13 14:08:23 peterg # Changed default rep.txt # # Revision 1.83 1997/06/13 09:18:28 peterg |
︙ | |||
295 296 297 298 299 300 301 302 303 304 305 306 307 308 | 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 | + + + | ## Put in fig.fig target. ## ## Revision 1.1 1996/08/04 17:29:42 peter ## Initial revision ## ############################################################### #Check $MTTPATH has bee set mtt_check_var "$MTTPATH" "MTTPATH" # MTT recursion level is zero unless explicitly set level=0 #Computation mode is octave by default computation=octave #By default, the dae and ode representations are different |
︙ | |||
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 | 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 | + + | if [ "$1" = "help" ]; then mtt_help $2 $3 exit fi if [ "$1" = "hinfo" ] && [$2 = ""]; then echo Invoking $HTMLVIEW mtt_check_var "$HTMLVIEW" HTMLVIEW (cd $MTTPATH/doc; $HTMLVIEW ./mtt_toc.html)& exit fi if [ "$1" = "manual" ] && [$2 = ""]; then mtt_check_var "$DVIVIEW" DVIVIEW echo Invoking $DVIVIEW $DVIVIEW $MTTPATH/doc/mtt.dvi & exit fi if [ "$1" = "warranty" ] && [$2 = ""]; then cat << EOF |
︙ | |||
413 414 415 416 417 418 419 | 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 | - + - + + - + - + + + | # 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 *_abg.ps *_args.* *_cr.r *_cr.txt *_abg.tex rm -f *_sabg.fig *_sabg.ps *_head.fig *_bnd.fig |
︙ | |||
593 594 595 596 597 598 599 600 601 | 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 | + + - + | VCext='r' ;; *) echo Version control is not appropriate for representation $2 exit ;; esac fi #Check the principle paths mtt_check_vars # This is the main mtt programme |
︙ | |||
1080 1081 1082 1083 1084 1085 1086 | 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 | - + | ifeq ($computation,octave) $1_odes.m: $1_ode.m $1_numpar.m $1_args.m $1_def.m $1_input.m ode2odes_m $1 '$ARGS' endif ifeq ($computation,c) $1_odes.m: $1_odes.c $1_ode.c $1_numpar.c $1_odes.h\ $1_sympar.c $1_sympar.h\ |
︙ | |||
1283 1284 1285 1286 1287 1288 1289 | 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 | - + + | echo Copying dsvdcmp.c; cp $MTTPATH/trans/c/dsvdcmp.c . dpythag.c: echo Copying dpythag.c; cp $MTTPATH/trans/c/dpythag.c . nrutil.c: echo Copying nrutil.c; cp $MTTPATH/trans/c/nrutil.c . nrutil.h: echo Copying nrutil.h; cp $MTTPATH/trans/c/nrutil.h . |