# HG changeset patch # User mru # Date 1149891963 0 # Node ID 4c2eba93c584bf5cd8113a9e4485783c9cd9b4a8 # Parent 13829fcefa8102da8adddaca53b1ad1f8b393209 use ifeq(...,yes) instead of ifdef diff -r 13829fcefa81 -r 4c2eba93c584 Makefile --- a/Makefile Fri Jun 09 13:10:37 2006 +0000 +++ b/Makefile Fri Jun 09 22:26:03 2006 +0000 @@ -347,11 +347,11 @@ 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