Makefile 504 B

123456789101112131415161718192021222324
  1. MAKEINFO=makeinfo
  2. TEXI2DVI=texi2dvi
  3. .PHONY: examples
  4. all: examples prometheus.info prometheus.pdf prometheus.html
  5. rm examples
  6. # For some reason, TeX can't stand @verbatiminclude ../examples/...
  7. examples:
  8. test -e examples || ln -s ../examples .
  9. prometheus.info: prometheus.texinfo
  10. $(MAKEINFO) --no-split $<
  11. prometheus.pdf: prometheus.texinfo
  12. $(TEXI2DVI) -c -p $<
  13. prometheus.html: prometheus.texinfo
  14. $(MAKEINFO) --html --no-split $<
  15. clean:
  16. rm -f prometheus.pdf prometheus.info prometheus.html