11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
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
$(SYS)_struc.txt:
mtt $(MTTFLAGS) $(SYS) struc txt
$(MTTPATH)/trans/struc2gnuplot_txt.exe:
make -f $(MTT_CC)/Makefile struc2gnuplot_txt.exe
|
<
<
<
<
<
|
11
12
13
14
15
16
17
18
19
20
21
|
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)_struc.txt:
mtt $(MTTFLAGS) $(SYS) struc txt
|