# plugindir is set in configure # change libgstplugin.la to something more suitable plugin_LTLIBRARIES = libgstaudiodelay.la # for the next set of variables, rename the prefix if you renamed the .la # sources used to compile this plug-in libgstaudiodelay_la_SOURCES = gstaudiodelay.c # flags used to compile this plugin # add other _CFLAGS and _LIBS as needed libgstaudiodelay_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(GSTCTRL_CFLAGS) libgstaudiodelay_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(GSTCTRL_LIBS) libgstaudiodelay_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) # headers we need but don't want installed noinst_HEADERS = gstaudiodelay.h