mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 19:09:41 +00:00
4359de2616
Original commit message from CVS: * removal of //-style comments * don't link plugins to core libs -- the versioning is done internally to the plugins with the plugin_info struct, and symbol resolution is lazy, so we can always know if a plugin can be loaded by the plugin_info data. in theory.
20 lines
544 B
Makefile
20 lines
544 B
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libgstplayondemand.la
|
|
|
|
libgstplayondemand_la_SOURCES = gstplayondemand.c
|
|
libgstplayondemand_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstplayondemand_la_LIBADD =
|
|
libgstplayondemand_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstplayondemand.h filter.func
|
|
|
|
if HAVE_GTK
|
|
noinst_PROGRAMS = demo-mp3
|
|
endif
|
|
|
|
demo_mp3_SOURCES = demo-mp3.c
|
|
## putting GTK_CFLAGS first fixes a weird compilation error with GTK and XML
|
|
demo_mp3_CFLAGS = $(GTK_CFLAGS) $(GST_CFLAGS)
|
|
demo_mp3_LDFLAGS = $(GST_LIBS) $(GTK_LIBS)
|
|
|