Overview
Comment: | Added .PRECIOUS: %.cc to hang on to cc files - thanks Geraint |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
6a7e922b427967dc57361c0188c58446 |
User & Date: | gawthrop@users.sourceforge.net on 2000-12-01 17:59:01 |
Other Links: | branch diff | manifest | tags |
Context
2000-12-01
| ||
18:00:59 | Updated figure references check-in: 85b49debb9 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
17:59:01 | Added .PRECIOUS: %.cc to hang on to cc files - thanks Geraint check-in: 6a7e922b42 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
17:56:30 | Removed spurious echo '## Set matrices to zero' - thanks Geraint check-in: 6559fa56d9 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [d66a64b6e3] to [5febea087f].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.286 2000/12/01 14:18:44 peterg ## -partition now partially works up to cse.m ## but need to think about indexing, struc files etc for subsystems. ## ## Revision 1.285 2000/11/27 11:51:21 peterg ## Fixed a few pdf /fig bugs ## | > > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.287 2000/12/01 16:04:24 peterg ## More partitioning achieved -- now needs the connections to be properly ## sorted in cbg2ese_r ## ## Revision 1.286 2000/12/01 14:18:44 peterg ## -partition now partially works up to cse.m ## but need to think about indexing, struc files etc for subsystems. ## ## Revision 1.285 2000/11/27 11:51:21 peterg ## Fixed a few pdf /fig bugs ## |
︙ | ︙ | |||
1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 | # MTT implicit rules ## .oct files ifneq ($2,ode2odes) %.oct: %.cc $1_def.h $1_sympar.h echo Creating $1_$2.oct; $MKOCTFILE $< endif ## .cc files ifneq ($2,ode2odes) %.cc: %.m mtt_m2cc.sh $1 $2 cat endif # Generates code to write reduce code $1_ode_write.r: $1_def.m | > > | 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 | # MTT implicit rules ## .oct files ifneq ($2,ode2odes) %.oct: %.cc $1_def.h $1_sympar.h echo Creating $1_$2.oct; $MKOCTFILE $< endif ## .cc files .PRECIOUS: %.cc # Don't let mtt delete them ifneq ($2,ode2odes) %.cc: %.m mtt_m2cc.sh $1 $2 cat endif # Generates code to write reduce code $1_ode_write.r: $1_def.m |
︙ | ︙ |