mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-11 08:52:39 +00:00
16 lines
377 B
Makefile
16 lines
377 B
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libgstsinesrc.la
|
|
|
|
libgstsinesrc_la_SOURCES = gstsinesrc.c
|
|
libgstsinesrc_la_CFLAGS = $(GST_CFLAGS)
|
|
|
|
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
|