mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
a5ce472811
Original commit message from CVS: and comment the rest too of course
25 lines
737 B
Makefile
25 lines
737 B
Makefile
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libgstgetbits.la
|
|
|
|
if HAVE_CPU_I386
|
|
GSTARCH_SRCS = gstgetbits_i386.s
|
|
else
|
|
GSTARCH_SRCS =
|
|
endif
|
|
|
|
libgstgetbits_la_SOURCES = gstgetbits.c gstgetbits_inl.h gstgetbits_generic.c $(GSTARCH_SRCS)
|
|
EXTRA_libgstgetbits_la_SOURCES = gstgetbits_i386.s
|
|
libgstgetbits_la_CFLAGS = -O2 $(FOMIT_FRAME_POINTER) -funroll-all-loops -finline-functions -ffast-math $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
|
|
|
|
libgstgetbitsincludedir = $(includedir)/gst/libs/gstgetbits
|
|
libgstgetbitsinclude_HEADERS = gstgetbits.h
|
|
|
|
noinst_HEADERS = gstgetbits.h gstgetbits_inl.h
|
|
|
|
# check_PROGRAMS = gbtest
|
|
|
|
#gbtest_SOURCES = gbtest.c
|
|
#gbtest_LDADD = libgstgetbits.la $(GST_LIBS)
|
|
#gbtest_CFLAGS = libgstgetbits.la $(GST_CFLAGS)
|
|
|