comparison Makefile @ 6569:c8f1eeb9298a libavcodec

replace some ifeq with prettier ifdef
author mru
date Mon, 07 Apr 2008 22:17:47 +0000
parents abe82c91bd42
children d1a06d94040a
comparison
equal deleted inserted replaced
6568:abe82c91bd42 6569:c8f1eeb9298a
360 OBJS-$(HAVE_PTHREADS) += pthread.o 360 OBJS-$(HAVE_PTHREADS) += pthread.o
361 OBJS-$(HAVE_W32THREADS) += w32thread.o 361 OBJS-$(HAVE_W32THREADS) += w32thread.o
362 362
363 OBJS-$(HAVE_XVMC) += xvmcvideo.o 363 OBJS-$(HAVE_XVMC) += xvmcvideo.o
364 364
365 ifneq ($(CONFIG_SWSCALE),yes) 365 ifndef CONFIG_SWSCALE
366 OBJS += imgresample.o 366 OBJS += imgresample.o
367 endif 367 endif
368 368
369 # processor-specific code 369 # processor-specific code
370 ifeq ($(HAVE_MMX),yes) 370 ifdef HAVE_MMX
371 OBJS += i386/fdct_mmx.o \ 371 OBJS += i386/fdct_mmx.o \
372 i386/cputest.o \ 372 i386/cputest.o \
373 i386/dsputil_mmx.o \ 373 i386/dsputil_mmx.o \
374 i386/mpegvideo_mmx.o \ 374 i386/mpegvideo_mmx.o \
375 i386/motion_est_mmx.o \ 375 i386/motion_est_mmx.o \