2006-08-17 19:28:47 +03:00
|
|
|
-include ../config.mak
|
|
|
|
|
|
|
|
VPATH=$(SRC_PATH)/doc
|
|
|
|
|
2003-08-24 14:16:29 +03:00
|
|
|
all: ffmpeg-doc.html faq.html ffserver-doc.html ffplay-doc.html hooks.html \
|
|
|
|
ffmpeg.1 ffserver.1 ffplay.1
|
2002-10-28 00:00:34 +02:00
|
|
|
|
2003-06-02 23:13:30 +03:00
|
|
|
%.html: %.texi Makefile
|
2002-10-28 00:00:34 +02:00
|
|
|
texi2html -monolithic -number $<
|
2003-06-02 23:13:30 +03:00
|
|
|
|
2003-08-24 14:16:29 +03:00
|
|
|
%.pod: %-doc.texi
|
|
|
|
./texi2pod.pl $< $@
|
|
|
|
|
|
|
|
%.1: %.pod
|
|
|
|
pod2man --section=1 --center=" " --release=" " $< > $@
|
|
|
|
|
2003-06-02 23:13:30 +03:00
|
|
|
clean:
|
2003-08-24 14:16:29 +03:00
|
|
|
rm -f *.html *.pod *.1
|