mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
4261692187
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
12 lines
338 B
Makefile
12 lines
338 B
Makefile
plugin_LTLIBRARIES = libgstmusepack.la
|
|
|
|
libgstmusepack_la_SOURCES = \
|
|
gstmusepackdec.c \
|
|
gstmusepackreader.c
|
|
libgstmusepack_la_CFLAGS = $(MUSEPACK_CFLAGS) $(GST_CFLAGS)
|
|
libgstmusepack_la_LIBADD = $(MUSEPACK_LIBS) $(GST_LIBS)
|
|
libgstmusepack_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstmusepackdec.h \
|
|
gstmusepackreader.h
|