2003-08-24 13:16:29 +02:00
|
|
|
all: ffmpeg-doc.html faq.html ffserver-doc.html ffplay-doc.html hooks.html \
|
|
|
|
ffmpeg.1 ffserver.1 ffplay.1
|
2002-10-27 23:00:34 +01:00
|
|
|
|
2003-06-02 22:13:30 +02:00
|
|
|
%.html: %.texi Makefile
|
2002-10-27 23:00:34 +01:00
|
|
|
texi2html -monolithic -number $<
|
2003-06-02 22:13:30 +02:00
|
|
|
|
2003-08-24 13:16:29 +02:00
|
|
|
%.pod: %-doc.texi
|
|
|
|
./texi2pod.pl $< $@
|
|
|
|
|
|
|
|
%.1: %.pod
|
|
|
|
pod2man --section=1 --center=" " --release=" " $< > $@
|
|
|
|
|
2003-06-02 22:13:30 +02:00
|
|
|
clean:
|
2003-08-24 13:16:29 +02:00
|
|
|
rm -f *.html *.pod *.1
|