DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T m

⟦6ce4fa7e4⟧ TextFile

    Length: 797 (0x31d)
    Types: TextFile
    Names: »makefile«

Derivation

└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89
    └─⟦e0e3e8967⟧ »./gnuplot.tar.Z« 
        └─⟦01af444b1⟧ 
            └─⟦this⟧ »gnuplot/plotdoc/makefile« 

TextFile

# 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