# HG changeset patch # User rfelker # Date 1153287266 0 # Node ID 0945c6e242c6facad7b33a96d01b0bd5f18381f2 # Parent 078479215e541f84cedce5997835a2c797d7a4ac remove duplicate code and fix issue of compiling mmx code when we shouldn't in one fell swoop! diff -r 078479215e54 -r 0945c6e242c6 libmpeg2/Makefile --- a/libmpeg2/Makefile Wed Jul 19 05:27:02 2006 +0000 +++ b/libmpeg2/Makefile Wed Jul 19 05:34:26 2006 +0000 @@ -16,11 +16,7 @@ INCLUDE = -I. -I../libvo -I.. CFLAGS = $(OPTFLAGS) $(INCLUDE) -DMPG12PLAY -ifeq ($(TARGET_ARCH_X86),yes) -SRCS += idct_mmx.c motion_comp_mmx.c -endif - -ifeq ($(TARGET_ARCH_X86_64),yes) +ifeq ($(TARGET_MMX),yes) SRCS += idct_mmx.c motion_comp_mmx.c endif