Overview
Comment: | Aliases implemented for parameters + lots of associated goodies New-style lbl files - no more SS nonsense. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
86c30d98aa63b66f7be3e336ab83f5f3 |
User & Date: | gawthrop@users.sourceforge.net on 1998-07-04 11:37:43 |
Other Links: | branch diff | manifest | tags |
Context
1998-07-04
| ||
11:38:51 | Version 3.0-- (Seascale) check-in: c29376bb27 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:37:43 |
Aliases implemented for parameters + lots of associated goodies New-style lbl files - no more SS nonsense. check-in: 86c30d98aa user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:09:46 | Cleaned up - assumes new lbl style for SS check-in: ede68429da user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [43d30e0f33] to [9d431ca5df].
︙ | |||
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.158 1998/07/03 09:06:39 peterg ## Alias implemented for ports ## ## Revision 1.157 1998/07/01 10:22:11 peterg ## Moved tidy stuff to end of preamble -- needed to make muti-plot copy ## correctely ## Now copies ps file with arguments to WD ## ## Revision 1.156 1998/06/26 14:19:43 peterg ## Copy hidden files (eg .octaverc) in tidy mode |
︙ | |||
751 752 753 754 755 756 757 | 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 | - + | # 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.m *_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 |
︙ | |||
776 777 778 779 780 781 782 | 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 | - + | # 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.m $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 |
︙ |