Mercurial > libavcodec.hg
changeset 3340:4c2eba93c584 libavcodec
use ifeq(...,yes) instead of ifdef
author | mru |
---|---|
date | Fri, 09 Jun 2006 22:26:03 +0000 |
parents | 13829fcefa81 |
children | bd7a496e44c9 |
files | Makefile |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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