mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
448600ebe4
Original commit message from CVS: Include libgst.la when linking gbtest so it compiles.
27 lines
786 B
Makefile
27 lines
786 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
|
|
|
|
bin_PROGRAMS = gbtest
|
|
|
|
gbtest_SOURCES = gbtest.c
|
|
gbtest_LDADD = libgstgetbits.la $(top_srcdir)/gst/libgst.la
|
|
|
|
CFLAGS += -Wall -O2 -fomit-frame-pointer -funroll-all-loops -finline-functions -ffast-math
|
|
|
|
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir) -I$(top_srcdir)/include
|
|
LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_srcdir)/gst/libgst.la
|