mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-29 21:21:12 +00:00
9ca8248cc2
Original commit message from CVS: Massive build fixup. Will send message to -devel list later with details on the changes and what they mean for Makefile.am writers. Check docs/random/omega/build/TODO for a list of things that I had to make sure of. NOTE: this requires a complete rebuild of all plugins, since I also changed the STATE enum to a bitfield instead of sequential numbers.
19 lines
453 B
Makefile
19 lines
453 B
Makefile
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libgstcolorspace.la
|
|
|
|
if HAVE_CPU_I386
|
|
ARCHSRCS = yuv2rgb_mmx16.s
|
|
else
|
|
ARCHSRCS =
|
|
endif
|
|
|
|
libgstcolorspace_la_SOURCES = gstcolorspace.c rgb2rgb.c yuv2rgb.c $(ARCHSRCS)
|
|
|
|
libgstcolorspaceincludedir = $(includedir)/gst/libs/gstcolorspace
|
|
libgstcolorspaceinclude_HEADERS = gstcolorspace.h
|
|
|
|
noinst_HEADERS = yuv2rgb.h
|
|
|
|
# FIXME is this needed?
|
|
CFLAGS += -O2 $(FOMIT_FRAME_POINTER) -finline-functions -ffast-math
|