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.353 2002/05/28 18:08:38 geraint
## Fixed [ 547294 ] CRs are not sought from MTT_CRS.
##
## Revision 1.352 2002/05/24 11:04:10 geraint
## Removed unnecessary message about *.log file not existing when -D option is used.
##
## Revision 1.351 2002/05/23 17:08:20 geraint
|
>
>
>
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright (C) 2001 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.354 2002/06/10 10:43:19 gawthrop
## ode2odes now prerequisite for sim.m and ssim.m
##
## Revision 1.353 2002/05/28 18:08:38 geraint
## Fixed [ 547294 ] CRs are not sought from MTT_CRS.
##
## Revision 1.352 2002/05/24 11:04:10 geraint
## Removed unnecessary message about *.log file not existing when -D option is used.
##
## Revision 1.351 2002/05/23 17:08:20 geraint
|
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
|
#SUMMARY cr constitutive relationship for each subsystem (r)
$1_cr.r: $1_cr.txt
cr_txt2r $1
#SUMMARY cr constitutive relationship header (c)
$1_cr.h:
echo Creating $1_cr.h
echo "// CR headers for system $1" > $1_cr.h
# Cheat a bit and use the top level cr file for the subsystem as well
ifneq ($sub,)
$Subsystem_cr.r: $1_cr.r
echo Creating $Subsystem_cr.r "(copying $1_cr.r)"
cp $1_cr.r $Subsystem_cr.r
endif
|
|
|
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
|
#SUMMARY cr constitutive relationship for each subsystem (r)
$1_cr.r: $1_cr.txt
cr_txt2r $1
#SUMMARY cr constitutive relationship header (c)
$1_cr.h:
echo Creating $1_cr.h
echo "/* CR headers for system $1 */" > $1_cr.h
# Cheat a bit and use the top level cr file for the subsystem as well
ifneq ($sub,)
$Subsystem_cr.r: $1_cr.r
echo Creating $Subsystem_cr.r "(copying $1_cr.r)"
cp $1_cr.r $Subsystem_cr.r
endif
|