mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
5a30245c38
Original commit message from CVS: * gst/adder/Makefile.am: * gst/adder/gstadder.c: Cleanup variable names to make the adder-loop easier to understand. Also try to use liboil to spee it up, but ifdef it out as it does not make any change for me (Intel pentim M (sse,sse2) please try on other systems).
11 lines
352 B
Makefile
11 lines
352 B
Makefile
plugin_LTLIBRARIES = libgstadder.la
|
|
|
|
libgstadder_la_SOURCES = gstadder.c
|
|
libgstadder_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
#$(LIBOIL_CFLAGS)
|
|
libgstadder_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstadder_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS)
|
|
#$(LIBOIL_LIBS)
|
|
libgstadder_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstadder.h
|