diff options
author | Mans Rullgard <mans@mansr.com> | 2012-07-04 16:51:10 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-07-04 17:48:25 +0100 |
commit | 7c29377b702783680b223a12503df784b1808086 (patch) | |
tree | aa4a462a972e9bf6f3c848fc8b47cf207b4912e5 /libavfilter/Makefile | |
parent | fa2d7473528c601c1076957d474ab7550d588828 (diff) | |
download | ffmpeg-7c29377b702783680b223a12503df784b1808086.tar.gz |
lavfi: reclassify showfiltfmts as a TESTPROG
This tool uses lavfi internal symbols not accessible in shared
libraries. TESTPROGS are linked statically to allow them use of
library internals not normally exported.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index b78960932f..530aa576ae 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -89,5 +89,5 @@ OBJS-$(CONFIG_TESTSRC_FILTER) += vsrc_testsrc.o OBJS-$(CONFIG_NULLSINK_FILTER) += vsink_nullsink.o -TOOLS = graph2dot \ - lavfi-showfiltfmts \ +TOOLS = graph2dot +TESTPROGS = filtfmts |