mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-12 04:11:31 +00:00
d02e7d8029
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
11 lines
367 B
Makefile
11 lines
367 B
Makefile
plugin_LTLIBRARIES = libgstdvdread.la
|
|
|
|
libgstdvdread_la_SOURCES = dvdreadsrc.c
|
|
libgstdvdread_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(DVDREAD_CFLAGS)
|
|
libgstdvdread_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) \
|
|
$(GMODULE_NO_EXPORT_LIBS) $(DVDREAD_LIBS)
|
|
libgstdvdread_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = dvdreadsrc.h
|
|
|
|
EXTRA_DIST = README demo-play
|