mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
9b5de05399
If they were not ported after 4+ years it seems unlikely that anybody is ever going to need them again. They're still in the GIT history if needed. https://bugzilla.gnome.org/show_bug.cgi?id=774530
19 lines
570 B
Makefile
19 lines
570 B
Makefile
# plugindir is set in configure
|
|
plugin_LTLIBRARIES =
|
|
|
|
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 = gstwildmidi.h
|
|
|