Makefile 381 B

1234567891011121314151617181920
  1. -include ../config.mak
  2. VPATH=$(SRC_PATH_BARE)/doc
  3. all: ffmpeg-doc.html faq.html ffserver-doc.html ffplay-doc.html hooks.html \
  4. ffmpeg.1 ffserver.1 ffplay.1
  5. %.html: %.texi Makefile
  6. texi2html -monolithic -number $<
  7. %.pod: %-doc.texi
  8. ./texi2pod.pl $< $@
  9. %.1: %.pod
  10. pod2man --section=1 --center=" " --release=" " $< > $@
  11. clean:
  12. rm -f *.html *.pod *.1
  13. .PHONY: all clean