Mercurial > hg > octave-lyh
view make/texi.make @ 1293:fd946f5926ce
[project @ 1995-05-01 17:50:00 by jwe]
author | jwe |
---|---|
date | Mon, 01 May 1995 17:50:00 +0000 |
parents | 99b98517b7ac |
children | ce26e54112b0 |
line wrap: on
line source
# texi.make -- making .dvi and .info from .texi. MAKEINFO = makeinfo MAKEINFO_FLAGS = --paragraph-indent=2 -I$(HOME)/gnu/gnuorg # That -I is purely for my own benefit in doing `make dist'. It won't # hurt anything for you (I hope). TEXI2DVI = texi2dvi .SUFFIXES: .info .dvi .texi .texi.info: $(MAKEINFO) $(MAKEINFO_FLAGS) $< -o $@ .texi.dvi: $(TEXI2DVI) $(TEXI2DVI_FLAGS) $<