summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-03-23 20:54:20 -0300
committerJames Almer <jamrial@gmail.com>2017-03-23 20:54:20 -0300
commit9bcc5e8973eaa2104d072a7dcceef4a125c0e40b (patch)
tree69dbdc37594d5e65a129a0d3164f5072ba754c64 /Makefile
parente9d4b3dc375bff4066d0f91df52187b61411d9aa (diff)
parent7c9e2b295e4f70e8fedf9cceb12d95399a859a9c (diff)
downloadffmpeg-9bcc5e8973eaa2104d072a7dcceef4a125c0e40b.tar.gz
Merge commit '7c9e2b295e4f70e8fedf9cceb12d95399a859a9c'
* commit '7c9e2b295e4f70e8fedf9cceb12d95399a859a9c': Makefile: fix checking whether reconfiguring is required Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f8ddb99e6b..4fe0cdae35 100644
--- a/Makefile
+++ b/Makefile
@@ -79,8 +79,13 @@ tools/cws2fws$(EXESUF): ELIBS = $(ZLIB)
tools/uncoded_frame$(EXESUF): $(FF_DEP_LIBS)
tools/uncoded_frame$(EXESUF): ELIBS = $(FF_EXTRALIBS)
+CONFIGURABLE_COMPONENTS = \
+ $(wildcard $(FFLIBS:%=$(SRC_PATH)/lib%/all*.c)) \
+ $(SRC_PATH)/libavcodec/bitstream_filters.c \
+ $(SRC_PATH)/libavformat/protocols.c \
+
config.h: .config
-.config: $(wildcard $(FFLIBS:%=$(SRC_PATH)/lib%/all*.c))
+.config: $(CONFIGURABLE_COMPONENTS)
@-tput bold 2>/dev/null
@-printf '\nWARNING: $(?F) newer than config.h, rerun configure\n\n'
@-tput sgr0 2>/dev/null