13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright (C) 2001 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.382 2003/09/23 20:53:49 geraint
## Updated version number (5.0).
##
## Revision 1.381 2003/08/10 18:56:55 gawthrop
## Explicitly generate eps files
##
## Revision 1.380 2003/08/06 14:44:51 gawthrop
|
>
>
>
>
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright (C) 2001 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.383 2004/08/01 19:50:07 geraint
## Moved rules for ibg.m and abg.m so that -ibg can be used with dia models.
## Need to create cmp.m files before this combination will work.
##
## Revision 1.382 2003/09/23 20:53:49 geraint
## Updated version number (5.0).
##
## Revision 1.381 2003/08/10 18:56:55 gawthrop
## Explicitly generate eps files
##
## Revision 1.380 2003/08/06 14:44:51 gawthrop
|
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
|
%_ibg.m: %_abg.dia %_alias.m
abg2ibg_dia2m \$*
%_ibg.m: %_rbg.m
@echo "EXPERIMENTAL: Creating \$@"
rbg2ibg_m $info_switch \$*
%_abg.m: %_ibg.m %_cmp.m %_lbl.txt %_alias.m %_sub.sh %_icd.m
@echo "EXPERIMENTAL: Creating \$@"
(sh \$*_sub.sh "mtt $mtt_switches -q -u -l $level+1 " ' abg m null || exit 1') || exit 1
ibg2abg_m $info_switch \$*
endif
endif
#SUMMARY cbg* causal bond graph (m)
|
|
|
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
|
%_ibg.m: %_abg.dia %_alias.m
abg2ibg_dia2m \$*
%_ibg.m: %_rbg.m
@echo "EXPERIMENTAL: Creating \$@"
rbg2ibg_m $info_switch \$*
%_abg.m: %_ibg.m %_cmp.m %_alias.m %_sub.sh %_icd.m
@echo "EXPERIMENTAL: Creating \$@"
(sh \$*_sub.sh "mtt $mtt_switches -q -u -l $level+1 " ' abg m null || exit 1') || exit 1
ibg2abg_m $info_switch \$*
endif
endif
#SUMMARY cbg* causal bond graph (m)
|