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
|