Overview
Comment: | Tidied up switches |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9210642021da04b573f3eb5e964ca213 |
User & Date: | gawthrop@users.sourceforge.net on 1997-12-04 10:58:15 |
Other Links: | branch diff | manifest | tags |
Context
1997-12-04
| ||
13:48:00 | Added sign info to take account of direction of bonds. check-in: b920a2a59b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:58:15 | Tidied up switches check-in: 9210642021 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:49:16 |
Put under RCS at last Added CC variable check-in: b942b3cbd2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [c7e43e5895] to [15419dc9a6].
︙ | ︙ | |||
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.96 1997/12/04 10:40:26 peterg ## Added -p switch - print enviromment variables ## ## Revision 1.95 1997/12/04 10:05:02 peterg ## Compiler now symbolocic $cc ## # Revision 1.94 1997/11/20 11:23:16 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.97 1997/12/04 10:44:33 peterg ## Changed $cc to $CC ## ## Revision 1.96 1997/12/04 10:40:26 peterg ## Added -p switch - print enviromment variables ## ## Revision 1.95 1997/12/04 10:05:02 peterg ## Compiler now symbolocic $cc ## # Revision 1.94 1997/11/20 11:23:16 peterg |
︙ | ︙ | |||
348 349 350 351 352 353 354 355 356 357 358 359 360 361 | #By default, the dae and ode representations are different dae_is_ode=0 # By default, don't look for BG switches switches=0 mtt_switches=''; #Look for a command line argument while [ -n "`echo $1 | grep '-'`" ]; do mtt_switches="$mtt_switches $1" case $1 in -q ) | > > > > | 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | #By default, the dae and ode representations are different dae_is_ode=0 # By default, don't look for BG switches switches=0 #By default, don't print the environment variables print=''; #Initialise list mtt_switches=''; #Look for a command line argument while [ -n "`echo $1 | grep '-'`" ]; do mtt_switches="$mtt_switches $1" case $1 in -q ) |
︙ | ︙ |