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 - download
Index: ┃ M T

⟦55c34e6fc⟧ TextFile

    Length: 761 (0x2f9)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/euug-87hel/sec1/gnuplot/docs/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 = /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