diff mbox

[FFmpeg-devel,1/2] build: Make API documentation depend on config.mak

Message ID 1469856638-16675-1-git-send-email-timothygu99@gmail.com
State Accepted, archived
Commit fbe22355b7d44ab02fa2c7ed059c03e606970009
Headers show

Commit Message

Timothy Gu July 30, 2016, 5:30 a.m. UTC
The Doxygen command is generated from the list of installed headers,
which may change per configuration (e.g. `--enable-gpl` results in
libpostproc to be built and installed).
---
 doc/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Michael Niedermayer July 31, 2016, 2:06 p.m. UTC | #1
On Fri, Jul 29, 2016 at 10:30:37PM -0700, Timothy Gu wrote:
> The Doxygen command is generated from the list of installed headers,
> which may change per configuration (e.g. `--enable-gpl` results in
> libpostproc to be built and installed).
> ---
>  doc/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

LGTM but please wait with applying so others who know the build
system better have a chance to look at this

thx

[...]
Timothy Gu Aug. 2, 2016, 2:45 p.m. UTC | #2
On Sun, Jul 31, 2016 at 7:06 AM Michael Niedermayer <michael@niedermayer.cc>
wrote:

> On Fri, Jul 29, 2016 at 10:30:37PM -0700, Timothy Gu wrote:
> > The Doxygen command is generated from the list of installed headers,
> > which may change per configuration (e.g. `--enable-gpl` results in
> > libpostproc to be built and installed).
> > ---
> >  doc/Makefile | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
>
> LGTM but please wait with applying so others who know the build
> system better have a chance to look at this
>
> thx
>

Pushed.

Timothy
diff mbox

Patch

diff --git a/doc/Makefile b/doc/Makefile
index 4a77aac..c90cb1a 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -125,7 +125,7 @@  $(DOC_EXAMPLES:%$(EXESUF)=%.o): | doc/examples
 OBJDIRS += doc/examples
 
 DOXY_INPUT      = $(INSTHEADERS) $(DOC_EXAMPLES:%$(EXESUF)=%.c) $(LIB_EXAMPLES:%$(EXESUF)=%.c)
-DOXY_INPUT_DEPS = $(addprefix $(SRC_PATH)/, $(DOXY_INPUT))
+DOXY_INPUT_DEPS = $(addprefix $(SRC_PATH)/, $(DOXY_INPUT)) config.mak
 
 doc/doxy/html: TAG = DOXY
 doc/doxy/html: $(SRC_PATH)/doc/Doxyfile $(SRC_PATH)/doc/doxy-wrapper.sh $(DOXY_INPUT_DEPS)