## Process this file with automake to produce Makefile.in info_TEXINFOS = rngstreams.texi rngstreams_TEXINFOS = \ rngstreams.texi \ version.texi noinst_DATA = EXTRA_DIST = \ rngstreams.html \ rngstreams.txt \ rngstreams.dvi \ rngstreams.ps \ rngstreams.pdf \ texinfo.tex SUFFIXES = .html .txt # make html file ... .texi.html: $(MAKEINFO) --html --no-split $< -o $@ # make plain text file ... .texi.txt: $(MAKEINFO) --fill-column=80 --no-headers --number-sections $< -o $@ rngstreams.txt: $(MAKEINFO) --fill-column=80 --no-headers --number-sections rngstreams.texi -o rngstreams.txt # abbreviations .PHONY: html txt html: version.texi rngstreams.html txt: version.texi rngstreams.txt # clean backup files CLEANFILES = *~ # clean generated files MAINTAINERCLEANFILES = \ Makefile.in \ mdate-sh \ rngstreams.html \ rngstreams.txt