Artifact eaa0e5623c778f3b68852acee32ae0a7dfc981a2c8239e5a9e4da0b08bca7908:
- File
r34.1/plot/docs/latextut/Makefile
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 570) [annotate] [blame] [check-ins using] [more...]
# Makefile for gnuplot LaTeX tutorial # To make the manual from scratch, we run latex two times all: tutorial.dvi done done: latex tutorial echo > done # To touch it up after changes: remake: tutorial.dvi # Always runs latex, e.g., to get labels right force: latex tutorial tutorial.dvi: eg1.tex eg2.tex eg3.tex eg4.tex eg5.tex eg6.tex linepoint.tex \ tutorial.tex header.tex latex tutorial rm -f done .SUFFIXES: .tex .plt .plt.tex: gnuplot $< clean: rm -f *~ *.log eg?.tex linepoint.tex spotless: rm -f *~ *.log *.aux *.dvi eg?.tex linepoint.tex done