gstreamer/tests/examples/encoding/Makefile.am
Sebastian Dröge c23c706dce examples: Fix encodebin example CFLAGS and LDFLAGS
Previously it would only succeed to link if a new enough
libgstpbutils-0.10 was installed in the default library
search path.
2010-12-18 20:47:00 +01:00

12 lines
304 B
Makefile

examples = encoding
encoding_SOURCES = gstcapslist.c encoding.c
EXTRA_DIST = gstcapslist.h
noinst_PROGRAMS = $(examples)
LDADD = $(top_builddir)/gst-libs/gst/pbutils/libgstpbutils-@GST_MAJORMINOR@.la \
$(GST_LIBS)
AM_CFLAGS = -I$(top_builddir)/gst-libs \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_CFLAGS)