mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
9ca8248cc2
Original commit message from CVS: Massive build fixup. Will send message to -devel list later with details on the changes and what they mean for Makefile.am writers. Check docs/random/omega/build/TODO for a list of things that I had to make sure of. NOTE: this requires a complete rebuild of all plugins, since I also changed the STATE enum to a bitfield instead of sequential numbers.
24 lines
642 B
Makefile
24 lines
642 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
|
|
|
|
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 $(top_srcdir)/gst/libgst.la
|
|
|
|
CFLAGS += -O2 $(FOMIT_FRAME_POINTER) -funroll-all-loops -finline-functions -ffast-math
|