blob: e4f24f5d5e7ede46b9529c94c32f4ea9f7fd9f81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#
# Make info documentation
#
AUXFILES = *.aux *.cp *.fn *.ky *.log *.pg *.toc *.tp *.vr *.dvi
SRCS = rdoff.texi
OUTS = rdoff.info rdoff.html rdoff.ps rdoff.pdf
## Implicit rules
%.html : %.texi
makeinfo --html $<
%.dvi : %.texi
texi2dvi $<
%.ps: %.dvi
dvips $<
%.pdf: %.dvi
dvipdf $<
## Explicit rules
all: info
info: rdoff.info
html: rdoff.html
ps: rdoff.ps
pdf: rdoff.pdf
clean:
rm -f $(OUTS) $(AUXFILES)
|