mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
6ae5f15064
Original commit message from CVS: s/@GST_PLUGIN_LDFLAGS@/$(GST_PLUGIN_LDFLAGS)/ @-substitued variables variables are defined as make variables automagically, and this gives the user the freedom to say make GST_PLUGIN_LDFLAGS=-myflag
22 lines
594 B
Makefile
22 lines
594 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_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = getbits.h gstgetbits_inl.h
|
|
|
|
# check_PROGRAMS = gbtest
|