Overview
Comment: | Fixed bug with null ARGS argument Put in new lib paths. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
0eaddbb1ed2c4fa9f90c3d3ec7bc8adc |
User & Date: | gawthrop@users.sourceforge.net on 1996-11-09 20:17:34 |
Other Links: | branch diff | manifest | tags |
Context
1996-11-09
| ||
20:22:54 | VERSION 2.0 check-in: 87287d89d1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
20:17:34 |
Fixed bug with null ARGS argument Put in new lib paths. check-in: 0eaddbb1ed user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
19:04:34 | Removed cp $1_$1_cbg.fig $1_cbg.fig. check-in: 5932f87884 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [10040b2307] to [b693ee8dfd].
︙ | |||
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 27 | + + + + | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.37 1996/11/09 18:47:46 peterg ## Added new copy command (using find). ## More documaentation stuff. ## # Revision 1.36 1996/11/03 21:19:02 peterg # Recursice generation of Constitutive Relationship files. # ## Revision 1.35 1996/11/02 10:19:19 peterg ## Constitutive Relationship generation from lbl file ## ## Revision 1.34 1996/11/01 13:34:35 peterg |
︙ | |||
214 215 216 217 218 219 220 | 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | - + - + | 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 |
︙ | |||
254 255 256 257 258 259 260 | 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | - + + + + + + | if [ -n "$file_exists" ]; then if [ "$quiet" != "quiet" ]; then echo $2_abg.fig exists already - no action taken fi else path_name=$3 if [ "$path_name" = "" ]; then |
︙ | |||
555 556 557 558 559 560 561 | 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 | - - - - - + + + + + | $1_ode.r: $1_cse.r $1_def.r $1_sympar.r cse2ode_r $1; tidy $1_ode.r $1_ode.m: $1_def.r $1_ode.r $1_sympar.r ode_r2m $1; matlab_tidy $1_ode.m; matlab_tidy $1_odeo.m $1_ode.tex: $1_ode.r $1_sympar.r $1_simp.r ode_r2tex $1; latex_tidy $1_ode.tex |
︙ |