mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 04:41:16 +00:00
103f6a7382
Original commit message from CVS: - plugins are built without versioning info
18 lines
463 B
Makefile
18 lines
463 B
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libgstsinesrc.la
|
|
|
|
libgstsinesrc_la_SOURCES = gstsinesrc.c
|
|
libgstsinesrc_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstsinesrc_la_LIBADD = $(GST_LIBS)
|
|
libgstsinesrc_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
|
|
|
|
noinst_HEADERS = gstsinesrc.h
|
|
|
|
if HAVE_GTK
|
|
noinst_PROGRAMS = demo-dparams
|
|
endif
|
|
|
|
demo_dparams_SOURCES = demo-dparams.c
|
|
demo_dparams_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS)
|
|
demo_dparams_LDFLAGS = $(GST_LIBS) $(GTK_LIBS) -lgstcontrol
|