]> git.sesse.net Git - ffmpeg/blobdiff - doc/Makefile
configure: add missing CFLAGS to fix building on the HURD
[ffmpeg] / doc / Makefile
index 4fc9dfb8f96d8e87418a696d181952376ee6b6f5..01960b74b0cd217ed43225ac0a5ad31bbffe37f2 100644 (file)
@@ -1,20 +1,46 @@
--include ../config.mak
+MANPAGES    = $(PROGS-yes:%=doc/%.1)
+PODPAGES    = $(PROGS-yes:%=doc/%.pod)
+HTMLPAGES   = $(PROGS-yes:%=doc/%.html)
 
-VPATH=$(SRC_PATH_BARE)/doc
+DOCS = $(addprefix doc/, developer.html faq.html general.html libavfilter.html) $(HTMLPAGES) $(MANPAGES) $(PODPAGES)
 
-all: ffmpeg-doc.html faq.html ffserver-doc.html ffplay-doc.html hooks.html \
-     ffmpeg.1 ffserver.1 ffplay.1
+all-$(CONFIG_DOC): documentation
 
-%.html: %.texi Makefile
-       texi2html -monolithic -number $<
+documentation: $(DOCS)
 
-%.pod: %-doc.texi
-       ./texi2pod.pl $< $@
+TEXIDEP = awk '/^@include/ { printf "$@: $(@D)/%s\n", $$2 }' <$< >$(@:%=%.d)
 
-%.1: %.pod
-       pod2man --section=1 --center=" " --release=" " $< > $@
+doc/%.html: TAG = HTML
+doc/%.html: doc/%.texi $(SRC_PATH)/doc/t2h.init
+       $(Q)$(TEXIDEP)
+       $(M)texi2html -monolithic --init-file $(SRC_PATH)/doc/t2h.init --output $@ $<
 
-clean:
-       rm -f *.html *.pod *.1
+doc/%.pod: TAG = POD
+doc/%.pod: doc/%.texi
+       $(Q)$(TEXIDEP)
+       $(M)$(SRC_PATH)/doc/texi2pod.pl $< $@
 
-.PHONY: all clean
+doc/%.1: TAG = MAN
+doc/%.1: doc/%.pod
+       $(M)pod2man --section=1 --center=" " --release=" " $< > $@
+
+$(DOCS): | doc
+OBJDIRS += doc
+
+install-progs-$(CONFIG_DOC): install-man
+
+install-man: $(MANPAGES)
+       $(Q)mkdir -p "$(MANDIR)/man1"
+       $(INSTALL) -m 644 $(MANPAGES) "$(MANDIR)/man1"
+
+uninstall: uninstall-man
+
+uninstall-man:
+       $(RM) $(addprefix "$(MANDIR)/man1/",$(ALLMANPAGES))
+
+clean::
+       $(RM) doc/*.html doc/*.pod doc/*.1 $(CLEANSUFFIXES:%=doc/%)
+
+-include $(wildcard $(DOCS:%=%.d))
+
+.PHONY: documentation