11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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.301 2001/04/05 03:46:12 geraint
## Added mtt_prepend.sh, -p preserves time attribute of base file
## - eliminates error in dependencies due to update of ese.r by modpar.r.
##
## Revision 1.300 2001/04/04 10:06:49 gawthrop
## New ssim (sensitiveity simulation) rep
##
## Revision 1.299 2001/04/03 14:49:42 gawthrop
## Revised to incorporate new ssim (sensitivity simulation)
## representation (m only just now).
##
|
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
|
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
|
+
+
|
#SUMMARY input numerical input declaration (m)
ifeq ($stdin,stdin)
$1_input.m : $1_def.r
make_stdin $1 m
$1_input.p : $1_def.r
make_stdin $1 p
$1_input.cc:
make_stdin $1 cc
else
$1_input.m: $1_input.txt $1_sympars.txt
mtt_txt2m $1 input
$1_input.p : $1_def.r $1_input.m
mtt_m2p $1_input.m
endif
|