view 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 source
1 SUFFIXES = .asm
3 if USE_MMX
4 noinst_LIBRARIES = lib386.a libfilter.a
5 lib386_a_SOURCES = 2xSaImmx.asm
6 else
7 noinst_LIBRARIES = libfilter.a
8 endif
10 .asm.o:
11 $(NASM) -f elf -o $@ $<
13 libfilter_a_SOURCES = \
14 2xSaI.cpp \
15 admame.cpp \
16 bilinear.cpp \
17 hq2x.cpp \
18 hq2x.h \
19 interframe.cpp \
20 interp.h \
21 lq2x.h \
22 motionblur.cpp \
23 pixel.cpp \
24 scanline.cpp \
25 simple2x.cpp