|
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: T m
Length: 797 (0x31d) Types: TextFile Names: »makefile«
└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89 └─⟦e0e3e8967⟧ »./gnuplot.tar.Z« └─⟦01af444b1⟧ └─⟦this⟧ »gnuplot/plotdoc/makefile«
# Makefile for GNUPLOT documentation # # troff a copy of gnuplot -ms if you've got a laser printer # otherwise, just print gnuplot.nroff on a line printer # HELPDIR = /src/local/gnuplot/help # HELPDIR = /usr/help/gnuplot HELPFILES = $(HELPDIR)/*.hlp\ $(HELPDIR)/expressions/*.hlp\ $(HELPDIR)/expressions/functions/*.hlp\ $(HELPDIR)/expressions/operators/*.hlp\ $(HELPDIR)/plot/*.hlp\ $(HELPDIR)/set-show/*.hlp gnuplot.nroff: titlepage intro gnuplot.ms nroff -ms -Tlpr < gnuplot.ms > gnuplot.nroff gnuplot.ms: hlp2ms gnuplot.hlp ./hlp2ms < gnuplot.hlp > gnuplot.ms gnuplot.hlp: $(HELPFILES) ./vmshelp.csh $(HELPDIR)/* > gnuplot.hlp hlp2ms: hlp2ms.c cc -o hlp2ms hlp2ms.c clean: rm -f gnuplot.nroff gnuplot.ms gnuplot.hlp hlp2ms