mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
b68d936ae0
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
18 lines
436 B
Makefile
18 lines
436 B
Makefile
plugin_LTLIBRARIES = libgstautodetect.la
|
|
|
|
libgstautodetect_la_SOURCES = \
|
|
gstautoaudiosink.c \
|
|
gstautoaudiosrc.c \
|
|
gstautodetect.c \
|
|
gstautovideosink.c \
|
|
gstautovideosrc.c
|
|
libgstautodetect_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstautodetect_la_LIBADD = $(GST_LIBS)
|
|
libgstautodetect_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstautoaudiosink.h \
|
|
gstautoaudiosrc.h \
|
|
gstautodetect.h \
|
|
gstautovideosink.h \
|
|
gstautovideosrc.h
|