Commit abab4408 authored by Alexander Strasser's avatar Alexander Strasser Committed by Michael Niedermayer

doc: fate: Support building a plain text version

  Also create a plain text (.txt) file from fate.texi if the makeinfo
program is available.
Signed-off-by: 's avatarAlexander Strasser <eclipse7@gmx.net>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a4872cfe
...@@ -15,6 +15,7 @@ config.* ...@@ -15,6 +15,7 @@ config.*
doc/*.1 doc/*.1
doc/*.html doc/*.html
doc/*.pod doc/*.pod
doc/fate.txt
doxy doxy
ffmpeg ffmpeg
ffplay ffplay
......
...@@ -1195,6 +1195,7 @@ HAVE_LIST=" ...@@ -1195,6 +1195,7 @@ HAVE_LIST="
lzo1x_999_compress lzo1x_999_compress
machine_ioctl_bt848_h machine_ioctl_bt848_h
machine_ioctl_meteor_h machine_ioctl_meteor_h
makeinfo
malloc_h malloc_h
MapViewOfFile MapViewOfFile
memalign memalign
...@@ -3153,6 +3154,7 @@ fi ...@@ -3153,6 +3154,7 @@ fi
enabled sdl && add_cflags $sdl_cflags && add_extralibs $sdl_libs enabled sdl && add_cflags $sdl_cflags && add_extralibs $sdl_libs
texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
makeinfo --version > /dev/null 2>&1 && enable makeinfo || disable makeinfo
check_header linux/fb.h check_header linux/fb.h
check_header linux/videodev.h check_header linux/videodev.h
......
...@@ -9,7 +9,13 @@ HTMLPAGES = $(PROGS-yes:%=doc/%.html) \ ...@@ -9,7 +9,13 @@ HTMLPAGES = $(PROGS-yes:%=doc/%.html) \
doc/libavfilter.html \ doc/libavfilter.html \
doc/platform.html \ doc/platform.html \
TXTPAGES = doc/fate.txt \
DOCS = $(HTMLPAGES) $(MANPAGES) $(PODPAGES) DOCS = $(HTMLPAGES) $(MANPAGES) $(PODPAGES)
ifdef HAVE_MAKEINFO
DOCS += $(TXTPAGES)
endif
all-$(CONFIG_DOC): documentation all-$(CONFIG_DOC): documentation
...@@ -17,6 +23,11 @@ documentation: $(DOCS) ...@@ -17,6 +23,11 @@ documentation: $(DOCS)
TEXIDEP = awk '/^@(verbatim)?include/ { printf "$@: $(@D)/%s\n", $$2 }' <$< >$(@:%=%.d) TEXIDEP = awk '/^@(verbatim)?include/ { printf "$@: $(@D)/%s\n", $$2 }' <$< >$(@:%=%.d)
doc/%.txt: TAG = TXT
doc/%.txt: doc/%.texi
$(Q)$(TEXIDEP)
$(M)makeinfo --force --no-headers -o $@ $< 2>/dev/null
doc/%.html: TAG = HTML doc/%.html: TAG = HTML
doc/%.html: doc/%.texi $(SRC_PATH)/doc/t2h.init doc/%.html: doc/%.texi $(SRC_PATH)/doc/t2h.init
$(Q)$(TEXIDEP) $(Q)$(TEXIDEP)
...@@ -46,7 +57,7 @@ uninstall-man: ...@@ -46,7 +57,7 @@ uninstall-man:
$(RM) $(addprefix "$(MANDIR)/man1/",$(ALLMANPAGES)) $(RM) $(addprefix "$(MANDIR)/man1/",$(ALLMANPAGES))
clean:: clean::
$(RM) doc/*.html doc/*.pod doc/*.1 $(CLEANSUFFIXES:%=doc/%) $(RM) $(TXTPAGES) doc/*.html doc/*.pod doc/*.1 $(CLEANSUFFIXES:%=doc/%)
-include $(wildcard $(DOCS:%=%.d)) -include $(wildcard $(DOCS:%=%.d))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment