From 485bc05decad874c4011cbe90bb9600c3a76bdea Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Tue, 14 Oct 2003 11:36:03 +0000 Subject: [PATCH] make it compatible with older make (debian stable - make 3.79.1) Originally committed as revision 2377 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libavformat/Makefile b/libavformat/Makefile index de385a53c5..e834d37ea8 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -21,7 +21,13 @@ ifeq ($(CONFIG_RISKY),yes) OBJS+= asf.o endif -ifeq ($(AMR_NB),yes) | ifeq ($(AMR_NB_FIXED),yes) | ifeq ($(AMR_WB),yes) +ifeq ($(AMR_NB),yes) +OBJS+= amr.o +endif +ifeq ($(AMR_NB_FIXED),yes) +OBJS+= amr.o +endif +ifeq ($(AMR_WB),yes) OBJS+= amr.o endif