mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
d6258153e0
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.
16 lines
452 B
Makefile
16 lines
452 B
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libesdsink.la libesdmon.la
|
|
|
|
libesdsink_la_SOURCES = esdsink.c
|
|
libesdsink_la_CFLAGS = $(GST_CFLAGS) $(ESD_CFLAGS)
|
|
libesdsink_la_LIBADD = $(ESD_LIBS)
|
|
libesdsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libesdmon_la_SOURCES = esdmon.c
|
|
libesdmon_la_CFLAGS = $(GST_CFLAGS) $(ESD_CFLAGS)
|
|
libesdmon_la_LIBADD = $(ESD_LIBS)
|
|
libesdmon_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = esdsink.h
|
|
EXTRA_DIST = README
|