mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
56047b2b0b
svn path=/trunk/kdegraphics/kdvi/; revision=2139
13 lines
382 B
Makefile
13 lines
382 B
Makefile
# 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) $<
|