1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

doc/Makefile: add doc target, as an alias for "documentation"

Consistent with --enable-doc, and easier to type.
This commit is contained in:
Stefano Sabatini 2012-08-11 11:58:57 +02:00
parent 9467f4eb5d
commit 8e2cf68d09

View File

@ -18,7 +18,9 @@ DOCS-$(CONFIG_MANPAGES) += $(MANPAGES)
DOCS-$(CONFIG_TXTPAGES) += $(TXTPAGES)
DOCS = $(DOCS-yes)
all-$(CONFIG_DOC): documentation
all-$(CONFIG_DOC): doc
doc: documentation
documentation: $(DOCS)
@ -72,4 +74,4 @@ clean::
-include $(wildcard $(DOCS:%=%.d))
.PHONY: documentation
.PHONY: doc documentation