mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 21:48:55 +00:00
b1be00e651
Original commit message from CVS: - plugins are built without versioning info /Uraeus claims: plugins/; if not plugins why this is built as lib*.so.0.0.0?
23 lines
631 B
Makefile
23 lines
631 B
Makefile
librarydir = $(libdir)/gst
|
|
|
|
library_LTLIBRARIES = libgstgetbits.la
|
|
|
|
if HAVE_CPU_I386
|
|
GSTARCH_SRCS = gstgetbits_i386.s
|
|
else
|
|
GSTARCH_SRCS =
|
|
endif
|
|
|
|
libgstgetbitsincludedir = $(includedir)/gst/getbits
|
|
libgstgetbitsinclude_HEADERS = getbits.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_CFLAGS) -funroll-all-loops -finline-functions -ffast-math
|
|
libgstgetbits_la_LIBADD = $(GST_LIBS)
|
|
libgstgetbits_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
|
|
|
|
noinst_HEADERS = getbits.h gstgetbits_inl.h
|
|
|
|
# check_PROGRAMS = gbtest
|