mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
7e89cbf5ba
Original commit message from CVS: * gst/Makefile.am: Remove as-libtool stuff. It's likely not needed with new versions of libtool (nobody will confirm this), and hard to carry around. * gst/autoplug/Makefile.am: * gst/base/Makefile.am: * gst/elements/Makefile.am: * gst/indexers/Makefile.am: * gst/schedulers/Makefile.am: * libs/gst/bytestream/Makefile.am: * libs/gst/control/Makefile.am: * libs/gst/dataprotocol/Makefile.am: * libs/gst/getbits/Makefile.am:
20 lines
602 B
Makefile
20 lines
602 B
Makefile
plugin_LTLIBRARIES = libgstgetbits.la
|
|
|
|
if HAVE_CPU_I386
|
|
GSTARCH_SRCS = gstgetbits_i386.s
|
|
else
|
|
GSTARCH_SRCS =
|
|
endif
|
|
|
|
libgstgetbitsincludedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/getbits
|
|
libgstgetbitsinclude_HEADERS = getbits.h
|
|
noinst_HEADERS = gstgetbits_inl.h
|
|
|
|
libgstgetbits_la_SOURCES = getbits.c gstgetbits_inl.h gstgetbits_generic.c $(GSTARCH_SRCS)
|
|
EXTRA_libgstgetbits_la_SOURCES = gstgetbits_i386.s
|
|
|
|
libgstgetbits_la_CFLAGS = $(GST_OBJ_CFLAGS) -funroll-all-loops -finline-functions -ffast-math
|
|
libgstgetbits_la_LDFLAGS = $(GST_OBJ_LIBS) $(GST_PLUGIN_LDFLAGS)
|
|
|
|
# check_PROGRAMS = gbtest
|
|
|