1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# -*-makefile-*-
# create a gnuplot input file
MTTFLAGS = $(MTT_OPTS)
all: $(MTT_SYS)_gnuplot.$(MTT_LANG)
$(MTT_SYS)_gnuplot.view: $(MTT_SYS)_gnuplot.wish
mtt $(MTT_OPTS) $(MTT_SYS) odes dat2
sh $(MTT_SYS)_gnuplot.wish |\
tee gnuplot_in.log |\
gnuplot -geometry 400x300 \
> gnuplot_out.log 2> gnuplot_err.log &
$(MTT_SYS)_gnuplot.wish: $(MTT_SYS)_struc.txt
$(MTTPATH)/trans/struc2gnuplot_txt2wish $(MTT_SYS)
$(MTT_SYS)_struc.txt:
mtt $(MTTFLAGS) $(MTT_SYS) struc txt
|
|
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# -*-makefile-*-
# create a gnuplot input file
MTTFLAGS = $(MTT_OPTS)
all: $(MTT_SYS)_gnuplot.$(MTT_LANG)
$(MTT_SYS)_gnuplot.view: $(MTT_SYS)_gnuplot.wish
mtt $(MTT_OPTS) $(MTT_SYS) odes dat2
sh $(MTT_SYS)_gnuplot.wish |\
tee gnuplot_in.log |\
gnuplot -name $(MTT_SYS) -geometry 400x300 \
> gnuplot_out.log 2> gnuplot_err.log &
$(MTT_SYS)_gnuplot.wish: $(MTT_SYS)_struc.txt
$(MTTPATH)/trans/struc2gnuplot_txt2wish $(MTT_SYS)
$(MTT_SYS)_struc.txt:
mtt $(MTTFLAGS) $(MTT_SYS) struc txt
|