You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
310B

  1. all: ffmpeg-doc.html faq.html ffserver-doc.html ffplay-doc.html hooks.html \
  2. ffmpeg.1 ffserver.1 ffplay.1
  3. %.html: %.texi Makefile
  4. texi2html -monolithic -number $<
  5. %.pod: %-doc.texi
  6. ./texi2pod.pl $< $@
  7. %.1: %.pod
  8. pod2man --section=1 --center=" " --release=" " $< > $@
  9. clean:
  10. rm -f *.html *.pod *.1