|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: M T
Length: 2295 (0x8f7) Types: TextFile Names: »Makefile«
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« └─⟦c58930e5c⟧ └─⟦this⟧ »TeX3.14/TeXcontrib/gnuplot/docs/Makefile«
# Makefile for GNUPLOT documentation # # Note that the top-level file for documentation is gnuplot.doc. # See README. # # To print manual: # make gnuplot.dvi (for latex) # (print or view gnuplot.dvi) # OR # make gnuplot.nroff (for nroff) # (print or view gnuplot.nroff) # or # make "TROFF=itroff" troff (for troff; use your troff for itroff here) # # $Id: Makefile,v 1.1 90/01/11 15:43:03 dfk Exp Locker: dfk $ # usually overridden by ../Makefile HELPDEST = /usr/local/lib/ # substitute your troff command (and any flags) for this one TROFF=itroff # Compiler flags # -DSYSV if att sys V # -DMSDOS if MSDOS PS # no extra flags for BSD CFLAGS = -s # default is what is needed for interactive gnuplot default: gnuplot.hlp gnuplot.gih ### [tn]roff documentation troff: gnuplot.ms titlepage.ms tbl gnuplot.ms | eqn | $(TROFF) -ms # for screen viewing, or printers with backspace/overstrike, remove the -Tlpr nroff gnuplot.nroff: gnuplot.ms titlepage.ms tbl gnuplot.ms | neqn | nroff -ms -Tlpr > gnuplot.nroff ms gnuplot.ms: doc2ms gnuplot.doc ./doc2ms < gnuplot.doc > gnuplot.ms doc2ms: doc2ms.c cc $(CFLAGS) -o doc2ms doc2ms.c ### LaTeX documentation tex gnuplot.tex: doc2tex gnuplot.doc ./doc2tex < gnuplot.doc > gnuplot.tex dvi gnuplot.dvi: gnuplot.tex titlepage.tex (latex gnuplot.tex ; latex gnuplot.tex) doc2tex: doc2tex.c cc $(CFLAGS) -o doc2tex doc2tex.c # this is how to make gnuplot.hlp hlp gnuplot.hlp: doc2hlp gnuplot.doc ./doc2hlp < gnuplot.doc > gnuplot.hlp doc2hlp: doc2hlp.c cc $(CFLAGS) -o doc2hlp doc2hlp.c # this is how to make gnuplot.gih gih gnuplot.gih: doc2gih gnuplot.doc ./doc2gih < gnuplot.doc > gnuplot.gih doc2gih: doc2gih.c cc $(CFLAGS) -o doc2gih doc2gih.c # this is how to check the gnuplot.doc file check: checkdoc gnuplot.doc ./checkdoc < gnuplot.doc checkdoc: checkdoc.c cc $(CFLAGS) -o checkdoc checkdoc.c # For Unix and MSDOS only install-unix: gnuplot.gih cp gnuplot.gih $(HELPDEST) # for VMS only install-vms: gnuplot.hlp cp gnuplot.hlp $(HELPDEST) # remove all derived files clean: rm -f doc2ms gnuplot.nroff gnuplot.ms rm -f doc2tex gnuplot.tex gnuplot.dvi gnuplot.aux gnuplot.log gnuplot.toc rm -f doc2hlp gnuplot.hlp rm -f doc2gih gnuplot.gih rm -f checkdoc *~ *.o core a.out