mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
7eea6a04b7
Original commit message from CVS: fix for parallel installability
21 lines
633 B
Makefile
21 lines
633 B
Makefile
librarydir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|
|
|
library_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_CFLAGS) -funroll-all-loops -finline-functions -ffast-math
|
|
libgstgetbits_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
# check_PROGRAMS = gbtest
|