mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
33 lines
1 KiB
Makefile
33 lines
1 KiB
Makefile
# plugindir is set in configure
|
|
plugin_LTLIBRARIES =
|
|
|
|
if USE_TIMIDITY
|
|
plugin_LTLIBRARIES += libgsttimidity.la
|
|
|
|
# sources used to compile this plug-in
|
|
libgsttimidity_la_SOURCES = gsttimidity.c
|
|
|
|
# flags used to compile this plugin
|
|
# add other _CFLAGS and _LIBS as needed
|
|
libgsttimidity_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(TIMIDITY_CFLAGS)
|
|
libgsttimidity_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(TIMIDITY_LIBS)
|
|
libgsttimidity_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgsttimidity_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
endif
|
|
|
|
if USE_WILDMIDI
|
|
plugin_LTLIBRARIES += libgstwildmidi.la
|
|
|
|
# sources used to compile this plug-in
|
|
libgstwildmidi_la_SOURCES = gstwildmidi.c
|
|
|
|
# flags used to compile this plugin
|
|
# add other _CFLAGS and _LIBS as needed
|
|
libgstwildmidi_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(WILDMIDI_CFLAGS)
|
|
libgstwildmidi_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(WILDMIDI_LIBS)
|
|
libgstwildmidi_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstwildmidi_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
endif
|
|
|
|
noinst_HEADERS = gsttimidity.h gstwildmidi.h
|
|
|