summaryrefslogtreecommitdiffstats
path: root/kdvi/make/texi.make
blob: ff953cc77f91974653bc7f1be96e85c2c83c8206 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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) $<