repo.or.cz
/
nasm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
avx512: implement shorthand forms of VCMP and VPCMP opcodes
[nasm.git]
/
rdoff
/
doc
/
Makefile
blob
e4f24f5d5e7ede46b9529c94c32f4ea9f7fd9f81
1
#
2
# Make info documentation
3
#
4
5
AUXFILES
= *
.aux
*
.cp
*
.fn
*
.ky
*
.log
*
.pg
*
.toc
*
.tp
*
.vr
*
.
dvi
6
7
SRCS
=
rdoff.texi
8
OUTS
=
rdoff.
info
rdoff.html rdoff.ps rdoff.pdf
9
10
11
## Implicit rules
12
%
.html
: %
.texi
13
makeinfo
--
html
$<
14
15
%
.
dvi
: %
.texi
16
texi2dvi
$<
17
18
%
.ps
: %
.
dvi
19
dvips
$<
20
21
%
.pdf
: %
.
dvi
22
dvipdf
$<
23
24
25
## Explicit rules
26
all
:
info
27
28
info
:
rdoff.
info
29
30
html
:
rdoff.html
31
32
ps
:
rdoff.ps
33
34
pdf
:
rdoff.pdf
35
36
clean
:
37
rm
-
f
$(
OUTS
) $(
AUXFILES
)