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