aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2003-10-14 11:36:03 +0000
committerAlex Beregszaszi <alex@rtfs.hu>2003-10-14 11:36:03 +0000
commit485bc05decad874c4011cbe90bb9600c3a76bdea (patch)
tree370be988374640d5ae003fbb956bcb766288cbc0
parentf5610466860a3db493a97ba816a0b9d71d03a949 (diff)
downloadffmpeg-485bc05decad874c4011cbe90bb9600c3a76bdea.tar.gz
make it compatible with older make (debian stable - make 3.79.1)
Originally committed as revision 2377 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/Makefile8
1 files changed, 7 insertions, 1 deletions
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