mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
4f2884df76
Original commit message from CVS: * ext/timidity/Makefile.am: Dist all source files, no matter if only timidity or wildmidi or nothing is found by configure. Fixes bug #528000.
31 lines
948 B
Makefile
31 lines
948 B
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)
|
|
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)
|
|
endif
|
|
|
|
noinst_HEADERS = gsttimidity.h gstwildmidi.h
|
|
|