diff options
author | James Almer <jamrial@gmail.com> | 2017-09-29 17:42:42 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-09-29 17:56:36 -0300 |
commit | 3df437c2d1950239de1e20b213e7a24b78a6825a (patch) | |
tree | 12c39a6b6458a45bc9a9794952b0790e8ccb86d3 | |
parent | eace20a8623d041676f7705ceee61cabaf8bc584 (diff) | |
download | ffmpeg-3df437c2d1950239de1e20b213e7a24b78a6825a.tar.gz |
build: add missing changes to ensure examples build with progs-suffix
-rw-r--r-- | doc/examples/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/examples/Makefile b/doc/examples/Makefile index 9792e1f911..fe33b1768a 100644 --- a/doc/examples/Makefile +++ b/doc/examples/Makefile @@ -33,10 +33,10 @@ $(DOC_EXAMPLES): %$(PROGSSUF)$(EXESUF): %.o examples: $(DOC_EXAMPLES) -$(DOC_EXAMPLES:%$(EXESUF)=%.o): | doc/examples +$(DOC_EXAMPLES:%$(PROGSSUF)$(EXESUF)=%.o): | doc/examples OBJDIRS += doc/examples -DOXY_INPUT += $(DOC_EXAMPLES:%$(EXESUF)=%.c) +DOXY_INPUT += $(DOC_EXAMPLES:%$(PROGSSUF)$(EXESUF)=%.c) examplesclean: $(RM) $(ALL_DOC_EXAMPLES) $(ALL_DOC_EXAMPLES_G) |