mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-18 22:00:00 +01:00
22 lines
528 B
Makefile
22 lines
528 B
Makefile
# # Process this file with automake to produce Makefile.in.
|
|
MAINTAINERCLEANFILES=Makefile.in
|
|
EXTRA_DIST= ac.h ac_internal.h imgconvert.h img_internal.h img_x86_common.h
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/thirdparty
|
|
AM_CPPFLAGS += $(PTHREAD_CFLAGS)
|
|
|
|
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
|
|
|