Makefile 427 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #
  2. # Make info documentation
  3. #
  4. AUXFILES = *.aux *.cp *.fn *.ky *.log *.pg *.toc *.tp *.vr *.dvi
  5. SRCS = rdoff.texi
  6. OUTS = rdoff.info rdoff.html rdoff.ps rdoff.pdf
  7. ## Implicit rules
  8. %.html : %.texi
  9. makeinfo --html $<
  10. %.dvi : %.texi
  11. texi2dvi $<
  12. %.ps: %.dvi
  13. dvips $<
  14. %.pdf: %.dvi
  15. dvipdf $<
  16. ## Explicit rules
  17. all: info
  18. info: rdoff.info
  19. html: rdoff.html
  20. ps: rdoff.ps
  21. pdf: rdoff.pdf
  22. clean:
  23. rm -f $(OUTS) $(AUXFILES)