mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 10:59:39 +00:00
1f1d9b874f
Original commit message from CVS: hardlink stdc++ until someone explains us The One True Way
15 lines
487 B
Makefile
15 lines
487 B
Makefile
SUBDIRS=libmodplug .
|
|
|
|
plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|
|
|
plugin_LTLIBRARIES = libgstmodplug.la
|
|
|
|
libgstmodplug_la_SOURCES = modplug_types.c gstmodplug.cc
|
|
libgstmodplug_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstmodplug_la_CXXFLAGS = $(GST_CFLAGS)
|
|
libgstmodplug_la_LIBADD = $(top_builddir)/gst/modplug/libmodplug/libmodplug.la
|
|
# we add stdc++ because it'll be used by C programs
|
|
libgstmodplug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -lstdc++
|
|
|
|
noinst_HEADERS = gstmodplug.h modplug_types.h
|
|
|