Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-11-02 19:44:18 +0400
committerDiego Biurrun <diego@biurrun.de>2013-11-25 23:57:29 +0400
commit14abeaa43d021afdce9119d906891abe89c03b88 (patch)
tree031acaceee7e327cacfa2db8d8bcf4a83c745a92 /doc/Makefile
parent09cd0a3176204e5ce3e8279ec79706c8cfd0fe38 (diff)
build: Separate building programs linking against libav* from building av*
This will allow cleaner integration of building example programs.
Diffstat (limited to 'doc/Makefile')
-rw-r--r--doc/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/Makefile b/doc/Makefile
index f0f9da2462..3ab09402cf 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -1,6 +1,7 @@
-MANPAGES = $(PROGS-yes:%=doc/%.1)
-PODPAGES = $(PROGS-yes:%=doc/%.pod)
-HTMLPAGES = $(PROGS-yes:%=doc/%.html) \
+ALLMANPAGES = $(AVBASENAMES:%=%.1)
+MANPAGES = $(AVPROGS-yes:%=doc/%.1)
+PODPAGES = $(AVPROGS-yes:%=doc/%.pod)
+HTMLPAGES = $(AVPROGS-yes:%=doc/%.html) \
doc/developer.html \
doc/faq.html \
doc/fate.html \