1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# -*-makefile-*-
# Makefile for representation ippp - ppp system identification
# File ippp_rep.make
######################################
##### Model Transformation Tools #####
######################################
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.4 2001/04/23 15:06:21 gawthrop
## Removed stdin bug workaround
##
## Revision 1.3 2001/04/11 07:52:45 gawthrop
## Temporary fix to avoid incorrect _input.cc with stdin
##
## Revision 1.2 2001/04/05 11:49:07 gawthrop
|
>
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# -*-makefile-*-
# Makefile for representation ippp - ppp system identification
# File ippp_rep.make
######################################
##### Model Transformation Tools #####
######################################
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.5 2002/12/12 17:18:42 geraint
## Fixed [ 647664 ] Namespace clash: LANG
## Prepended MTT_ to SYS, OPTS and LANG environment variables.
##
## Revision 1.4 2001/04/23 15:06:21 gawthrop
## Removed stdin bug workaround
##
## Revision 1.3 2001/04/11 07:52:45 gawthrop
## Temporary fix to avoid incorrect _input.cc with stdin
##
## Revision 1.2 2001/04/05 11:49:07 gawthrop
|
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
touch $(MTT_SYS)_error.pdf
$(MTT_SYS)_outputs.pdf: $(MTT_SYS)_parameters.pdf
touch $(MTT_SYS)_outputs.pdf
s$(MTT_SYS)_ode2odes.m:
echo Starting creation of s$(MTT_SYS)_ode2odes.m with options $(MTT_OPTS)
mtt -q $(MTT_OPTS) -stdin -s s$(MTT_SYS) ode2odes oct
s$(MTT_SYS)_ssim.m: s$(MTT_SYS)_def.m
mtt -q $(MTT_OPTS) -s s$(MTT_SYS) ssim m
s$(MTT_SYS)_sympar.m:
mtt -q $(MTT_OPTS) -s s$(MTT_SYS) sympar m
s$(MTT_SYS)_simpar.m:
mtt -q $(MTT_OPTS) -s s$(MTT_SYS) simpar m
s$(MTT_SYS)_def.m:
mtt -q $(MTT_OPTS) -s s$(MTT_SYS) def m
|
|
|
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
touch $(MTT_SYS)_error.pdf
$(MTT_SYS)_outputs.pdf: $(MTT_SYS)_parameters.pdf
touch $(MTT_SYS)_outputs.pdf
s$(MTT_SYS)_ode2odes.m:
echo Starting creation of s$(MTT_SYS)_ode2odes.m with options $(MTT_OPTS)
mtt -q $(MTT_OPTS) -stdin -s s$(MTT_SYS) ode2odes m
s$(MTT_SYS)_ssim.m: s$(MTT_SYS)_def.m
mtt -q $(MTT_OPTS) -s s$(MTT_SYS) ssim m
s$(MTT_SYS)_sympar.m:
mtt -q $(MTT_OPTS) -s s$(MTT_SYS) sympar m
s$(MTT_SYS)_simpar.m:
mtt -q $(MTT_OPTS) -s s$(MTT_SYS) simpar m
s$(MTT_SYS)_def.m:
mtt -q $(MTT_OPTS) -s s$(MTT_SYS) def m
|