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.291 2000/12/27 14:50:40 peterg
## This is the first CVS version (4.9).
## Commented out code now deleted
##
## Revision 1.290 2000/12/05 09:59:37 peterg
## Generates $1_cr.h - allows inclusion of c functions for crs
##
## Revision 1.289 2000/12/05 09:01:52 peterg
## Changed == to =
##
## Revision 1.288 2000/12/01 17:59:01 peterg
|
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
|
333
334
335
336
337
338
339
340
341
342
343
344
345
346
|
-
|
## Implicit integration now handles switches
##
## Revision 1.192 1998/09/29 20:09:46 peterg
## Fixed nyfr and nifr plotting bug
##
## Revision 1.191 1998/09/02 12:05:39 peterg
## Added INPUT to simpar
##
## Revision 1.190 1998/09/02 11:48:51 peterg
## VERSION 3.2 (Swansea)
## abg data structure now uses explicti port and subsystem lists so that
## processing is in predetermined order.
##
## Revision 1.189 1998/08/31 10:49:15 peterg
## Minor changes to -abg operation
|
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
|
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
|
+
-
+
|
mtt_update $1 numpar
endif
#SUMMARY state numerical state declaration -- default (txt)
$1_state.txt : FORCE
mtt -q $1 struc txt
mtt -q $1 sympar txt
mtt -q $1 def r
ifeq ($target,$1_state.txt)
mtt_update $1 state update
else
mtt_update $1 state
endif
#SUMMARY state numerical state declaration -- default (txt)
#SUMMARY input numerical state declaration -- default (txt)
$1_input.txt : FORCE
mtt -q $1 struc txt
mtt -q $1 sympar txt
ifeq ($target,$1_input.txt)
mtt_update $1 input update
else
mtt_update $1 input
|