mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
b69e24cfa0
Original commit message from CVS: added hermes
17 lines
365 B
Makefile
17 lines
365 B
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libgstcolorspace.la
|
|
|
|
if HAVE_CPU_I386
|
|
ARCHSRCS = yuv2rgb_mmx16.s
|
|
else
|
|
ARCHSRCS =
|
|
endif
|
|
|
|
libgstcolorspace_la_SOURCES = gstcolorspace.c yuv2yuv.c yuv2rgb.c $(ARCHSRCS)
|
|
libgstcolorspace_la_CFLAGS = $(GST_CFLAGS)
|
|
if USE_HERMES
|
|
libgstcolorspace_la_LIBADD = $(HERMES_LIBS)
|
|
endif
|
|
|
|
noinst_HEADERS = gstcolorspace.h yuv2rgb.h
|