diff src/filters/Makefile.am @ 27:b970226568d2

brought in filters package
author Robert McIntyre <rlm@mit.edu>
date Sun, 04 Mar 2012 20:32:31 -0600
parents f9f4f1b99eed
children 690c44762f6f
line wrap: on
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/filters/Makefile.am	Sun Mar 04 20:32:31 2012 -0600
     1.3 @@ -0,0 +1,22 @@
     1.4 +SUFFIXES = .asm
     1.5 +
     1.6 +noinst_LIBRARIES = lib386.a libfilter.a
     1.7 +
     1.8 +lib386_a_SOURCES = 2xSaImmx.asm
     1.9 +
    1.10 +.asm.o:
    1.11 +	$(NASM) -f elf -o $@ $<
    1.12 +
    1.13 +libfilter_a_SOURCES = \
    1.14 +	2xSaI.cpp		\
    1.15 +	admame.cpp		\
    1.16 +	bilinear.cpp		\
    1.17 +	hq2x.cpp		\
    1.18 +	hq2x.h			\
    1.19 +	interframe.cpp		\
    1.20 +	interp.h		\
    1.21 +	lq2x.h			\
    1.22 +	motionblur.cpp		\
    1.23 +	pixel.cpp		\
    1.24 +	scanline.cpp		\
    1.25 +	simple2x.cpp