Initial release of Maemo 5 port of gnuplot
[gnuplot] / tutorial / makefile.dst
1 # Makefile for gnuplot LaTeX tutorial
2 # To make the manual from scratch, we run latex two times
3 all: tutorial.dvi done
4
5 done:
6         latex tutorial
7         echo > done
8
9 # To touch it up after changes:
10 remake: tutorial.dvi
11
12 # Always runs latex, e.g., to get labels right
13 force:
14         latex tutorial
15
16 tutorial.dvi: eg1.tex eg2.tex eg3.tex eg4.tex eg5.tex eg6.tex eg7.tex test.tex \
17         tutorial.tex header.tex
18         latex tutorial
19         rm -f done
20
21 .SUFFIXES: .tex .plt
22
23 .plt.tex:
24         gnuplot $<
25
26 clean:
27         rm -f *~ *.log eg?.tex test.tex
28
29 spotless:
30         rm -f *~ *.log *.aux *.dvi eg?.tex test.tex done