1plugin_LTLIBRARIES = libgstaudioresample.la
2
3libgstaudioresample_la_SOURCES = \
4	gstaudioresample.c
5
6nodist_libgstaudioresample_la_SOURCES = $(BUILT_SOURCES)
7
8libgstaudioresample_la_CFLAGS = \
9	$(GST_PLUGINS_BASE_CFLAGS) \
10	$(GST_BASE_CFLAGS) \
11	$(GST_CFLAGS)
12
13libgstaudioresample_la_LIBADD = \
14	$(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_API_VERSION@.la \
15	$(GST_BASE_LIBS) \
16	$(GST_LIBS) \
17	$(LIBM)
18
19libgstaudioresample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
20
21noinst_HEADERS = \
22	gstaudioresample.h
23