Mercurial > libavcodec.hg
diff Makefile @ 4557:6d4ac79304da libavcodec
simplify i386 object handling
| author | diego |
|---|---|
| date | Wed, 21 Feb 2007 23:32:13 +0000 |
| parents | 790d1cb93686 |
| children | 7cb6b1272f34 |
line wrap: on
line diff
--- a/Makefile Wed Feb 21 21:16:07 2007 +0000 +++ b/Makefile Wed Feb 21 23:32:13 2007 +0000 @@ -329,12 +329,8 @@ i386/fft_3dn2.o \ i386/snowdsp_mmx.o \ -ifeq ($(CONFIG_GPL),yes) -OBJS += i386/idct_mmx.o -endif -ifeq ($(CONFIG_CAVS_DECODER),yes) -OBJS += i386/cavsdsp_mmx.o -endif +OBJS-$(CONFIG_GPL) += i386/idct_mmx.o +OBJS-$(CONFIG_CAVS_DECODER) += i386/cavsdsp_mmx.o endif # armv4l specific stuff
