Makefile 250 B

12345678910111213
  1. all: rust.pdf rust.html
  2. %.pdf: %.texi
  3. texi2pdf $<
  4. %.html: %.texi
  5. makeinfo --html --ifhtml --force --no-split --output=$@ $<
  6. clean:
  7. rm -f rust.aux rust.cp rust.fn rust.ky rust.log rust.pdf \
  8. rust.html rust.pg rust.toc rust.tp rust.vr