1# Note: plugindir is set in configure
2
3plugin_LTLIBRARIES = libgstopenal.la
4
5# sources used to compile this plug-in
6libgstopenal_la_SOURCES = gstopenal.c gstopenalsink.c gstopenalsrc.c
7
8# compiler and linker flags used to compile this plugin, set in configure.ac
9libgstopenal_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(OPENAL_CFLAGS) $(GST_PLUGINS_BAD_CFLAGS)
10libgstopenal_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ $(GST_BASE_LIBS) $(GST_LIBS) $(OPENAL_LIBS)
11libgstopenal_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
12
13# headers we need but don't want installed
14noinst_HEADERS = gstopenalsink.h gstopenalsrc.h
15