mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 08:17:01 +00:00
16 lines
340 B
Makefile
16 lines
340 B
Makefile
|
|
||
|
plugin_LTLIBRARIES = libgstcolorspace.la
|
||
|
|
||
|
if HAVE_CPU_I386
|
||
|
ARCHSRCS = yuv2rgb_mmx16.s
|
||
|
else
|
||
|
ARCHSRCS =
|
||
|
endif
|
||
|
|
||
|
libgstcolorspace_la_SOURCES = gstcolorspace.c yuv2rgb.c yuv2yuv.c
|
||
|
libgstcolorspace_la_CFLAGS = $(GST_CFLAGS)
|
||
|
libgstcolorspace_la_LIBADD =
|
||
|
libgstcolorspace_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||
|
|
||
|
#noinst_HEADERS = yuv2rgb.h yuv2yuv.h
|