gstreamer/sys/kms/Makefile.am
Nicolas Dufresne 4261692187 Remove plugin specific static build option
Static and dynamic plugins now have the same interface. The standard
--enable-static/--enable-shared toggle are sufficient.
2017-05-16 14:05:52 -04:00

37 lines
717 B
Makefile

plugin_LTLIBRARIES = libgstkms.la
libgstkms_la_SOURCES = \
gstkmssink.c \
gstkmsutils.c \
gstkmsallocator.c \
gstkmsbufferpool.c \
$(NUL)
libgstkms_la_CFLAGS = \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_BASE_CFLAGS) \
$(GST_VIDEO_CFLAGS) \
$(GST_ALLOCATORS_CFLAGS) \
$(GST_CFLAGS) \
$(KMS_DRM_CFLAGS) \
$(NULL)
libgstkms_la_LIBADD = \
$(GST_PLUGINS_BASE_LIBS) \
$(GST_BASE_LIBS) \
$(GST_VIDEO_LIBS) \
$(GST_ALLOCATORS_LIBS) \
$(GST_LIBS) \
$(KMS_DRM_LIBS) \
$(NULL)
libgstkms_la_LDFLAGS = \
$(GST_PLUGIN_LDFLAGS) \
$(NULL)
noinst_HEADERS = \
gstkmssink.h \
gstkmsutils.h \
gstkmsallocator.h \
gstkmsbufferpool.h \
$(NULL)