Commit 93d0f7c6 authored by mru's avatar mru

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5462 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 39814038
......@@ -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
......
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