You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
567 B
28 lines
567 B
# # Process this file with automake to produce Makefile.in.
|
|
|
|
AM_CPPFLAGS = \
|
|
$(PTHREAD_CFLAGS) \
|
|
-I$(top_srcdir)
|
|
|
|
noinst_LTLIBRARIES = libac.la
|
|
|
|
libac_la_SOURCES = \
|
|
accore.c \
|
|
average.c \
|
|
imgconvert.c \
|
|
img_rgb_packed.c \
|
|
img_yuv_mixed.c \
|
|
img_yuv_packed.c \
|
|
img_yuv_planar.c \
|
|
img_yuv_rgb.c \
|
|
memcpy.c \
|
|
rescale.c
|
|
|
|
EXTRA_DIST = \
|
|
ac.h \
|
|
ac_internal.h \
|
|
imgconvert.h \
|
|
img_internal.h \
|
|
img_x86_common.h \
|
|
rgb-yuv-conv.pl
|