diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2003-10-14 11:36:03 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2003-10-14 11:36:03 +0000 |
commit | 485bc05decad874c4011cbe90bb9600c3a76bdea (patch) | |
tree | 370be988374640d5ae003fbb956bcb766288cbc0 | |
parent | f5610466860a3db493a97ba816a0b9d71d03a949 (diff) | |
download | ffmpeg-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/Makefile | 8 |
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 |