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