mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-30 22:12:15 +00:00
11 lines
228 B
Makefile
11 lines
228 B
Makefile
|
|
||
|
all: rust.pdf rust.html
|
||
|
|
||
|
%.pdf: %.texi
|
||
|
texi2pdf $<
|
||
|
|
||
|
%.html: %.texi
|
||
|
makeinfo --html --force --no-split --output=$@ $<
|
||
|
|
||
|
clean:
|
||
|
rm -f rust.aux rust.cp rust.fn rust.ky rust.log rust.pdf rust.html rust.pg rust.toc rust.tp rust.vr
|