Overview
Comment: | Clean no longer zaps the abg.m files |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ad3ade4f988227c51413933567881744 |
User & Date: | gawthrop@users.sourceforge.net on 2000-03-16 10:16:11 |
Other Links: | branch diff | manifest | tags |
Context
2000-03-16
| ||
12:53:26 |
Added copy of the %VAR declarations Put in the endfunction statement check-in: b9eab4c7d0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:16:11 | Clean no longer zaps the abg.m files check-in: ad3ade4f98 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
09:43:35 |
Put in $mtt_switches in mtt comand line when creating _state.txt and _input.txt check-in: f0e171e923 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [66acd820c6] to [f49743f477].
︙ | ︙ | |||
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, 1997,1998,1999 ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.231 2000/03/15 21:24:23 peterg ## Version 4.1: ## Fixed problems with -abg mode ## Old-style SS lbl no longer supported ## ## Revision 1.230 2000/03/15 20:31:06 peterg ## Replaced lbl2cr by abg2cr_m2txt | > > > > | 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, 1997,1998,1999 ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.232 2000/03/16 09:43:35 peterg ## Put in $mtt_switches in mtt comand line when creating _state.txt and ## _input.txt ## ## Revision 1.231 2000/03/15 21:24:23 peterg ## Version 4.1: ## Fixed problems with -abg mode ## Old-style SS lbl no longer supported ## ## Revision 1.230 2000/03/15 20:31:06 peterg ## Replaced lbl2cr by abg2cr_m2txt |
︙ | ︙ | |||
1076 1077 1078 1079 1080 1081 1082 | exit fi # The big clean up if [ "$1" = "Clean" ] && [ "$2" = "" ]; then echo 'Removing all generated files for all systems' rm -f *.log mtt_info.txt warning.txt | | | 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 | exit fi # The big 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.ps *_args.* *_cr.txt *_abg.tex rm -f *_sabg.fig *_sabg.ps *_head.fig *_bnd.fig rm -f *_sympar.r *_sympar.c *_sympar.h *_sympar.txt? *_sympar.tex rm -f *_rbg.* *_cmp.* *_fig.fig *_*cbg.* *_ese.* *_def.* *_alias.* rm -f *_sub.* *_type.sh rm -f *_dae*.* *_cse.* *_ode.* rm -f *_obs.* *_rfe.* *_ss.* rm -f *_dm.* *_csm.* *_tf.* *_sr*.* *_ir*.* *_*fr.* |
︙ | ︙ | |||
1101 1102 1103 1104 1105 1106 1107 | exit fi # Clean up named system if [ "$2" = "Clean" ] && [ "$3" = "" ]; then echo 'Removing all generated files for system ' $1 rm -f *.log mtt_info.txt warning.txt | | | 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 | exit fi # Clean up named system if [ "$2" = "Clean" ] && [ "$3" = "" ]; then echo 'Removing all generated files for system ' $1 rm -f *.log mtt_info.txt warning.txt rm -f $1_abg.ps $1_args.* $1_cr.txt $1_abg.tex rm -f $1_sabg.fig $1_sabg.ps $1_head.fig $1_bnd.fig rm -f $1_sympar.r $1_sympar.c $1_sympar.h $1_sympar.txt? $1_sympar.tex rm -f $1_rbg.* $1_cmp.* $1_fig.fig $1*_*cbg.* $1*_ese.* $1_def.* $1_alias.* rm -f $1_sub.* $1_type.sh rm -f $1_dae*.* $1_cse.* $1_ode.* $1_obs.* $1_rfe.* $1_ss.* rm -f $1_dm.* $1_csm.* $1_tf.* $1_sr*.* $1_ir*.* $1_*fr.* rm -f $1_numpar.m $1_numpar.c $1_input.m $1_input.c $1_switch.c $1_switch.txt |
︙ | ︙ |