mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +00:00
ffd06121fa
Original commit message from CVS: - plugins are built without versioning info
19 lines
478 B
Makefile
19 lines
478 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
|
|
demo_mp3_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS)
|
|
demo_mp3_LDFLAGS = $(GST_LIBS) $(GTK_LIBS)
|
|
|