diff src/filters/Makefile.am @ 50:690c44762f6f

enable proper optional mmx.
author Robert McIntyre <rlm@mit.edu>
date Thu, 21 Mar 2013 21:30:11 +0000
parents f9f4f1b99eed
children
line wrap: on
line diff
     1.1 --- a/src/filters/Makefile.am	Thu Mar 21 20:35:16 2013 +0000
     1.2 +++ b/src/filters/Makefile.am	Thu Mar 21 21:30:11 2013 +0000
     1.3 @@ -1,8 +1,11 @@
     1.4  SUFFIXES = .asm
     1.5  
     1.6 +if USE_MMX
     1.7  noinst_LIBRARIES = lib386.a libfilter.a
     1.8 -
     1.9  lib386_a_SOURCES = 2xSaImmx.asm
    1.10 +else
    1.11 +noinst_LIBRARIES = libfilter.a
    1.12 +endif
    1.13  
    1.14  .asm.o:
    1.15  	$(NASM) -f elf -o $@ $<