gstreamer/ext/esd/Makefile.am
Richard Boulton b6c08a233a Added esdmon plugin.
Original commit message from CVS:
Added esdmon plugin.
Monitors output from the esd sound daemon.
Particularly useful for displaying a visualisation of the audio being
played on your system.  eg:
gst-launch esdmon ! goom ! { queue leaky=yes ! colorspace ! sdlvideosink }
You can even have several of them going at once. :)
2002-03-02 15:20:05 +00:00

16 lines
474 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 = $(GST_LIBS) $(ESD_LIBS)
libesdsink_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
libesdmon_la_SOURCES = esdmon.c
libesdmon_la_CFLAGS = $(GST_CFLAGS) $(ESD_CFLAGS)
libesdmon_la_LIBADD = $(GST_LIBS) $(ESD_LIBS)
libesdmon_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
noinst_HEADERS = esdsink.h
EXTRA_DIST = README