diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-08-02 19:59:44 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-08-04 12:59:42 +0200 |
commit | 7ab0207d4b0d11f00840d7fc29c1f4fa8d47c13b (patch) | |
tree | 1d493c8a0e41daccf8b0557061c1b6eb2542ac8e /libavutil/Makefile | |
parent | cc6f6a1eefcfbfcae30e558a7d77f75284ff2c2f (diff) | |
download | ffmpeg-7ab0207d4b0d11f00840d7fc29c1f4fa8d47c13b.tar.gz |
avutil/Makefile: Apply CFLAGS for compilation
Fixes "make tools/crypto_bench.o".
Reviewed-by: James Almer <jamrial@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 18dc5f22d9..410ac636f7 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -262,6 +262,6 @@ TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo TOOLS = crypto_bench ffhash ffeval ffescape tools/crypto_bench$(EXESUF): ELIBS += $(if $(VERSUS),$(subst +, -l,+$(VERSUS)),) -tools/crypto_bench$(EXESUF): CFLAGS += -DUSE_EXT_LIBS=0$(if $(VERSUS),$(subst +,+USE_,+$(VERSUS)),) +tools/crypto_bench.o: CFLAGS += -DUSE_EXT_LIBS=0$(if $(VERSUS),$(subst +,+USE_,+$(VERSUS)),) $(SUBDIR)tests/lzo$(EXESUF): ELIBS = -llzo2 |