mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
6ef5499ab5
Original commit message from CVS: Finally we're on to a proper jack setup, with a specialized bin and elements that can only go in a jack bin. I had to fix the parser first to do this, but to run it, the syntax is like so: gst-launch jackbin.( filesrc ! mad ! jacksink ) But of course it's not fully functional yet. Sigh.
12 lines
293 B
Makefile
12 lines
293 B
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libgstjack.la
|
|
|
|
libgstjack_la_SOURCES = gstjack.c gstjackbin.c
|
|
libgstjack_la_CFLAGS = $(GST_CFLAGS) $(JACK_CFLAGS)
|
|
libgstjack_la_LIBADD = $(JACK_LIBS)
|
|
libgstjack_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstjack.h
|
|
|
|
EXTRA_DIST = README
|