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.329 2002/04/16 14:58:00 gawthrop
## mtt copy does NOT now copy the CVS directory
## $directory --> ${directory} (just to be tidy)
##
## Revision 1.328 2002/02/19 16:27:05 geraint
## Changes to make MTT work out of the box with Debian.
##
|
>
>
>
|
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.330 2002/04/17 10:03:12 geraint
## Marked .sg as a major representation.
##
## Revision 1.329 2002/04/16 14:58:00 gawthrop
## mtt copy does NOT now copy the CVS directory
## $directory --> ${directory} (just to be tidy)
##
## Revision 1.328 2002/02/19 16:27:05 geraint
## Changes to make MTT work out of the box with Debian.
##
|
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
|
time octave_ode2odes $1
else
$1_odes.dat2: $1_ode2odes.m
time octave_ode2odes $1
endif
endif
ifeq ($computation,c)
$1_ode2odes.out: $1_ode2odes.c $1_cr.h
echo Creating $1_odes.out by compiling *.c
$CC *.c -lp2c -lm -o $1_ode2odes.out
$1_odes.dat2: $1_ode2odes.out
echo Creating $1_odes.dat2 using c version
time ./$1_ode2odes.out>$1_odes.dat2
endif
ifeq ($computation,cc)
$1_sim.exe: $1_ese.r
|
<
|
|
>
|
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
|
time octave_ode2odes $1
else
$1_odes.dat2: $1_ode2odes.m
time octave_ode2odes $1
endif
endif
$1_ode2odes.out: $1_ode2odes.c $1_cr.h
echo Creating $1_odes.out by compiling $1_ode2odes.c
$CC $1_ode2odes.c -lp2c -lm -o $1_ode2odes.out
ifeq ($computation,c)
$1_odes.dat2: $1_ode2odes.out
echo Creating $1_odes.dat2 using c version
time ./$1_ode2odes.out>$1_odes.dat2
endif
ifeq ($computation,cc)
$1_sim.exe: $1_ese.r
|