gstreamer/gst/playondemand/Makefile.am
Thomas Vander Stichele bf52c37b13 fixing an error
Original commit message from CVS:
fixing an error
2002-02-02 14:24:35 +00:00

20 lines
555 B
Makefile

plugindir = $(libdir)/gst
plugin_LTLIBRARIES = libgstplayondemand.la
libgstplayondemand_la_SOURCES = gstplayondemand.c
libgstplayondemand_la_CFLAGS = $(GST_CFLAGS)
libgstplayondemand_la_LIBADD = $(GST_LIBS)
libgstplayondemand_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
noinst_HEADERS = gstplayondemand.h filter.func
if HAVE_GTK
noinst_PROGRAMS = demo-mp3
endif
demo_mp3_SOURCES = demo-mp3.c
## putting GTK_CFLAGS first fixes a weird compilation error with GTK and XML
demo_mp3_CFLAGS = $(GTK_CFLAGS) $(GST_CFLAGS)
demo_mp3_LDFLAGS = $(GST_LIBS) $(GTK_LIBS)