diff options
author | Måns Rullgård <mans@mansr.com> | 2006-06-09 22:26:03 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-06-09 22:26:03 +0000 |
commit | 87318d69880a34695e46b907a8755d16e61c5749 (patch) | |
tree | 54c291f244c295595ade670022ccbfd9b1a3c4e2 | |
parent | 36b1b0bcc6e485479832e5bd487ed7cd19d22519 (diff) | |
download | ffmpeg-87318d69880a34695e46b907a8755d16e61c5749.tar.gz |
use ifeq(...,yes) instead of ifdef
Originally committed as revision 5462 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index a8a06dc2db..ef2b152a11 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -347,11 +347,11 @@ OBJS += i386/fdct_mmx.o i386/cputest.o \ ifeq ($(CONFIG_GPL),yes) OBJS += i386/idct_mmx_xvid.o endif -ifdef TARGET_BUILTIN_VECTOR +ifeq ($(TARGET_BUILTIN_VECTOR),yes) i386/fft_sse.o: CFLAGS+= -msse depend: CFLAGS+= -msse endif -ifdef TARGET_BUILTIN_3DNOW +ifeq ($(TARGET_BUILTIN_3DNOW),yes) i386/fft_3dn.o: CFLAGS+= -m3dnow ifeq ($(TARGET_ARCH_X86),yes) i386/fft_3dn2.o: CFLAGS+= -march=athlon |