Commit 87318d69 authored by Måns Rullgård's avatar Måns Rullgård

use ifeq(...,yes) instead of ifdef

Originally committed as revision 5462 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 36b1b0bc
...@@ -347,11 +347,11 @@ OBJS += i386/fdct_mmx.o i386/cputest.o \ ...@@ -347,11 +347,11 @@ OBJS += i386/fdct_mmx.o i386/cputest.o \
ifeq ($(CONFIG_GPL),yes) ifeq ($(CONFIG_GPL),yes)
OBJS += i386/idct_mmx_xvid.o OBJS += i386/idct_mmx_xvid.o
endif endif
ifdef TARGET_BUILTIN_VECTOR ifeq ($(TARGET_BUILTIN_VECTOR),yes)
i386/fft_sse.o: CFLAGS+= -msse i386/fft_sse.o: CFLAGS+= -msse
depend: CFLAGS+= -msse depend: CFLAGS+= -msse
endif endif
ifdef TARGET_BUILTIN_3DNOW ifeq ($(TARGET_BUILTIN_3DNOW),yes)
i386/fft_3dn.o: CFLAGS+= -m3dnow i386/fft_3dn.o: CFLAGS+= -m3dnow
ifeq ($(TARGET_ARCH_X86),yes) ifeq ($(TARGET_ARCH_X86),yes)
i386/fft_3dn2.o: CFLAGS+= -march=athlon i386/fft_3dn2.o: CFLAGS+= -march=athlon
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment